From 65c911d4ddc08fc1abe20230301bc2b246d8ea7c Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 1 Apr 2024 20:01:11 +0200 Subject: [PATCH] update cheat teleport coordinates --- src/world.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/world.rs b/src/world.rs index 3c4d377..ccc38bf 100644 --- a/src/world.rs +++ b/src/world.rs @@ -241,13 +241,13 @@ fn handle_cheats( let (trans, mut pos, mut v) = q_player.get_single_mut().unwrap(); let (mut lifeform, ) = q_life.get_single_mut().unwrap(); if key_input.just_pressed(settings.key_cheat_pizza) { - pos.0 = DVec3::new(-3370.0, 0.0, 0.0); + pos.0 = DVec3::new(-303370.0, 0.0, -500000.0); } if key_input.just_pressed(settings.key_cheat_farview1) { - pos.0 = DVec3::new(-800000.0, 800000.0, 0.0); + pos.0 = DVec3::new(-1000000.0, 1000000.0, -500000.0); } if key_input.just_pressed(settings.key_cheat_farview2) { - pos.0 = DVec3::new(800000.0, 400000.0, 0.0); + pos.0 = DVec3::new(1000000.0, 1000000.0, -500000.0); } if key_input.just_pressed(settings.key_cheat_stop) { v.0 = DVec3::ZERO;