From 63ce06f069222fff21b642914bbeac8ef009b209 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Mon, 18 Sep 2023 18:31:15 -0700
Subject: [PATCH] syntactic sugar

---
 src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs
index 30a07581..423c1099 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -646,7 +646,7 @@ impl strafe_client::framework::Example for Skybox {
 		if self.physics.grounded&&self.physics.jump_trying {
 			//scroll will be implemented with InputInstruction::Jump(true) but it blocks setting self.jump_trying=true
 			strafe_client::instruction::InstructionConsumer::process_instruction(&mut self.physics, strafe_client::instruction::TimedInstruction{
-				time:time,//this is in the past when there is no instructions!
+				time,//this is in the past when there is no instructions!
 				instruction:strafe_client::body::PhysicsInstruction::Jump
 			});
 		}