Skip to content

Commit

Permalink
Fixes the magic ladder
Browse files Browse the repository at this point in the history
  • Loading branch information
imtakingabreakdontatme committed Sep 17, 2017
1 parent 7b1b767 commit 379c2f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/mining/lavaland/necropolis_chests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,8 @@
for(var/i in 1 to world.maxz)
if(i == ZLEVEL_CENTCOM || i == ZLEVEL_TRANSIT)
continue
new /obj/structure/ladder/unbreakable/jacob(ladder_x, ladder_y, i)
var/turf/T = locate(ladder_x, ladder_y, i)
new /obj/structure/ladder/unbreakable/jacob(T)
qdel(src)

/obj/structure/ladder/unbreakable/jacob
Expand Down

0 comments on commit 379c2f4

Please sign in to comment.