Fix style

This commit is contained in:
tayyyyyyy
2019-08-13 16:32:31 -07:00
committed by Tayyyyyyy
parent 77731d87d2
commit 760009a0cb
5 changed files with 29 additions and 29 deletions
+4 -4
View File
@@ -14,7 +14,7 @@ SUBSYSTEM_DEF(parallax)
planet_x_offset = rand(100, 160)
/datum/controller/subsystem/parallax/fire(resumed = 0)
if (!resumed)
if(!resumed)
src.currentrun = GLOB.clients.Copy()
//cache for sanic speed (lists are references anyways)
@@ -23,8 +23,8 @@ SUBSYSTEM_DEF(parallax)
while(length(currentrun))
var/client/C = currentrun[currentrun.len]
currentrun.len--
if (!C || !C.eye)
if (MC_TICK_CHECK)
if(!C || !C.eye)
if(MC_TICK_CHECK)
return
continue
var/atom/movable/A = C.eye
@@ -39,6 +39,6 @@ SUBSYSTEM_DEF(parallax)
LAZYINITLIST(A.client_mobs_in_contents)
A.client_mobs_in_contents += C.mob
C.movingmob = A
if (MC_TICK_CHECK)
if(MC_TICK_CHECK)
return
currentrun = null