Skip to content

Commit c73693e

Browse files
committed
Fix default sprite of ladders
1 parent ee67c1e commit c73693e

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

mojave/structures/ladders.dm

+22-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
name = "ladder"
33
desc = "A questionable metal ladder. There's got to be stairs around, right?"
44
icon = 'mojave/icons/structure/ladders.dmi'
5-
icon_state = "ladder10"
5+
icon_state = "ladder01"
66
resistance_flags = INDESTRUCTIBLE
77
travel_time = 2 SECONDS
88

9+
/obj/structure/ladder/ms13/upwards
10+
icon_state = "ladder10"
11+
912
// TG code edited for SFX //
1013

1114
/obj/structure/ladder/ms13/travel(going_up, mob/user, is_ghost, obj/structure/ladder/ladder)
@@ -69,6 +72,9 @@
6972
desc = "A manhole ladder, you could probably push the cover off from here, or try dragging it back on."
7073
travel_time = 2 SECONDS
7174
pixel_y = 7
75+
icon_state = "manhole_closed"
76+
77+
/obj/structure/ladder/ms13/manhole/upwards
7278
icon_state = "ladder10"
7379

7480
/obj/structure/ladder/ms13/manhole/examine(mob/user)
@@ -157,9 +163,12 @@
157163

158164
/obj/structure/ladder/ms13/bunker
159165
name = "bunker"
160-
icon_state = "ladder10"
166+
icon_state = "bunker_closed"
161167
travel_time = 2 SECONDS
162168

169+
/obj/structure/ladder/ms13/bunker/upwards
170+
icon_state = "ladder10"
171+
163172
/obj/structure/ladder/ms13/bunker/welder_act_secondary(mob/living/user, obj/item/I)
164173
if(down && obstructed)
165174
if(!I.tool_start_check(user, amount=0))
@@ -192,6 +201,9 @@
192201
desc = "A thick rope made of natural fibres and tied to a rusted rod firmly planted in the ground."
193202
travel_time = 3 SECONDS
194203

204+
/obj/structure/ladder/ms13/rope/upwards
205+
icon_state = "rope_down"
206+
195207
/obj/structure/ladder/ms13/rope/update_icon_state()
196208
. = ..()
197209
if(down)
@@ -207,9 +219,13 @@
207219
/obj/structure/ladder/ms13/hatch
208220
name = "bunker hatch"
209221
desc = "A bunker ladder, you could probably push the hatch open from here, or try closing it."
222+
icon_state = "hatch_closed"
210223
travel_time = 2 SECONDS
211224
locked = TRUE
212225

226+
/obj/structure/ladder/ms13/hatch/upwards
227+
icon_state = "ladder10"
228+
213229
/obj/structure/ladder/ms13/hatch/examine(mob/user)
214230
. = ..()
215231
. += "<span class='notice'>Use <b>RIGHT-CLICK</b> on [src] to open or close it.</span>"
@@ -299,8 +315,12 @@
299315
/obj/structure/ladder/ms13/enclave
300316
name = "Enclave bunker ladder"
301317
desc = "A bunker ladder adorned with Enclave heraldic, you could probably push the hatch open from here, or try closing it."
318+
icon_state = "enclave_closed"
302319
travel_time = 2 SECONDS
303320

321+
/obj/structure/ladder/ms13/enclave/upwards
322+
icon_state = "ladder10"
323+
304324
/obj/structure/ladder/ms13/enclave/examine(mob/user)
305325
. = ..()
306326
. += "<span class='notice'>Use <b>RIGHT-CLICK</b> on [src] to open or close it.</span>"

0 commit comments

Comments
 (0)