Skip to content

Commit

Permalink
Consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Jun 3, 2024
1 parent 68f5711 commit e036f75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/game/objects/effects/effect_system/smoke.dm
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
var/obj/effect/particle_effect/smoke/smoke = new type(cur_turf, amount, cause_data)
smoke.setDir(pick(GLOB.cardinals))
smoke.time_to_live = time_to_live
if(smoke.amount>0)
if(smoke.amount > 0)
smoke.spread_smoke()


Expand Down Expand Up @@ -620,7 +620,7 @@

smoke.setDir(pick(GLOB.cardinals))
smoke.time_to_live = time_to_live
if(smoke.amount>0)
if(smoke.amount > 0)
smoke.spread_smoke()


Expand Down Expand Up @@ -658,7 +658,7 @@
var/obj/effect/particle_effect/smoke/smoke = new smoke_type(location, amount+1, cause_data)
if(lifetime)
smoke.time_to_live = lifetime
if(smoke.amount)
if(smoke.amount > 0)
smoke.spread_smoke(direction)

/datum/effect_system/smoke_spread/bad
Expand Down Expand Up @@ -707,5 +707,5 @@

if(lifetime)
smoke.time_to_live = lifetime
if(smoke.amount)
if(smoke.amount > 0)
smoke.spread_smoke(direction)

0 comments on commit e036f75

Please sign in to comment.