diff --git a/src/physics.rs b/src/physics.rs
index 80da52a70..a38220822 100644
--- a/src/physics.rs
+++ b/src/physics.rs
@@ -922,7 +922,7 @@ impl VirtualBody<'_>{
 pub struct PhysicsState{
 	time:Time,
 	body:Body,
-	world:WorldState,//currently there is only one state the world can be in
+	_world:WorldState,//currently there is only one state the world can be in
 	touching:TouchingState,
 	//camera must exist in state because wormholes modify the camera, also camera punch
 	camera:PhysicsCamera,
@@ -959,7 +959,7 @@ impl Default for PhysicsState{
 			move_state:MoveState::Air,
 			camera:PhysicsCamera::default(),
 			input_state:InputState::default(),
-			world:WorldState{},
+			_world:WorldState{},
 			mode_state:ModeState::default(),
 			run:run::Run::new(),
 		}