From b67726f89626df5ff48878cb0c92bb9dac20e289 Mon Sep 17 00:00:00 2001 From: Jack Edge Date: Sat, 18 Jun 2016 23:08:27 +0100 Subject: [PATCH] Code review --- code/modules/shuttle/ripple.dm | 4 ++-- code/modules/shuttle/shuttle.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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