diff --git a/code/modules/shuttle/ripple.dm b/code/modules/shuttle/ripple.dm index 781c0b63821..dfc952b6590 100644 --- a/code/modules/shuttle/ripple.dm +++ b/code/modules/shuttle/ripple.dm @@ -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' diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 864f1c35c3f..d61cb5e40f8 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -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