From 44eb093c37a74cf48036421063da548d5fc4d318 Mon Sep 17 00:00:00 2001 From: GoldenDarkness55 <103884785+GoldenDarkness55@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:36:54 +0200 Subject: [PATCH] dizzy code fix mob.dm --- code/modules/mob/mob.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index f21329e31230..b6406ca96d78 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -610,8 +610,8 @@ note dizziness decrements automatically in the mob's Life() proc. while(dizziness > 100) if(client) if(buckled || resting) - client.pixel_x = 0 - client.pixel_y = 0 + client.pixel_x = 0 + client.pixel_y = 0 else var/amplitude = dizziness*(sin(dizziness * 0.044 * world.time) + 1) / 70 client.pixel_x = amplitude * sin(0.008 * dizziness * world.time)