Merge pull request #778 from Citadel-Station-13/upstream-merge-26928
[MIRROR] Fixes spinning (Woops I used a <= instead of a <)
This commit is contained in:
@@ -351,7 +351,7 @@
|
||||
/mob/proc/spin(spintime, speed)
|
||||
set waitfor = 0
|
||||
var/D = dir
|
||||
if((spintime <= 1)||(speed <= 1)||!spintime||!speed)
|
||||
if((spintime < 1)||(speed < 1)||!spintime||!speed)
|
||||
return
|
||||
while(spintime >= speed)
|
||||
sleep(speed)
|
||||
|
||||
Reference in New Issue
Block a user