From 6229ae530f1fc7b2c2e7a8ae3ff4790731d9ef96 Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Wed, 23 May 2018 20:22:33 -0700 Subject: [PATCH] Fix Jacob's Ladder allowing access to VR --- code/modules/mining/lavaland/necropolis_chests.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index fc9f62050f7..953eb1d02c3 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -589,7 +589,7 @@ to_chat(user, "You unfold the ladder. It extends much farther than you were expecting.") var/last_ladder = null for(var/i in 1 to world.maxz) - if(is_centcom_level(i) || is_transit_level(i) || is_reebe(i)) + if(is_centcom_level(i) || is_transit_level(i) || is_reebe(i) || is_away_level(i)) continue var/turf/T2 = locate(ladder_x, ladder_y, i) last_ladder = new /obj/structure/ladder/unbreakable/jacob(T2, null, last_ladder)