From f85300df0e7c610bd637d418cfca45bd85948cd3 Mon Sep 17 00:00:00 2001 From: crazyclonetheninja Date: Mon, 22 Nov 2010 02:21:07 +0000 Subject: [PATCH] Wizard can no longer teleport to the Emergency, Supply, or Prison shuttles. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@479 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/wizard/spell12.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/wizard/spell12.dm b/code/game/gamemodes/wizard/spell12.dm index e2e433cae7b..f6f6f04ce2b 100644 --- a/code/game/gamemodes/wizard/spell12.dm +++ b/code/game/gamemodes/wizard/spell12.dm @@ -21,6 +21,7 @@ var/list/theareas = new/list() for(var/area/AR in world) + if(istype(AR, /area/shuttle)) continue if(theareas.Find(AR.name)) continue var/turf/picked = pick(get_area_turfs(AR.type)) if (picked.z == src.z)