mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
Code review
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/obj/effect/ripple
|
||||
name = "bluespace ripple"
|
||||
desc = "Something is coming through bluespace, you can see the \
|
||||
name = "hyperspace ripple"
|
||||
desc = "Something is coming through hyperspace, you can see the \
|
||||
visual disturbances. It's probably best not to be on top of these \
|
||||
when whatever is tunneling comes through."
|
||||
icon = 'icons/effects/effects.dmi'
|
||||
|
||||
@@ -382,7 +382,7 @@
|
||||
|
||||
var/list/ripple_turfs = list()
|
||||
|
||||
for(var/i=1, i<=L0.len, ++i)
|
||||
for(var/i in 1 to L0.len)
|
||||
var/turf/T0 = L0[i]
|
||||
if(!T0)
|
||||
continue
|
||||
@@ -451,7 +451,7 @@
|
||||
qdel(i)
|
||||
ripples.Cut()
|
||||
|
||||
for(var/i=1, i<=L0.len, ++i)
|
||||
for(var/i in 1 to L0.len)
|
||||
var/turf/T0 = L0[i]
|
||||
if(!T0)
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user