From 7b5734d6848469448feecdaca0a6e0bb1bbefbd1 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 23 Sep 2017 02:11:55 -0500 Subject: [PATCH] faction memes don't work, restrict access instead. --- code/modules/mining/mine_items.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index 7b17de3fd6..38381ae9c5 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -67,15 +67,13 @@ possible_destinations = "mining_home;mining_away;landing_zone_dock;mining_public" no_destination_swap = 1 var/global/list/dumb_rev_heads = list() + req_access = list(ACCESS_MINING) // should slow the ashwalkers down. /obj/machinery/computer/shuttle/mining/attack_hand(mob/user) if((user.z in GLOB.station_z_levels) && user.mind && (user.mind in SSticker.mode.head_revolutionaries) && !(user.mind in dumb_rev_heads)) to_chat(user, "You get a feeling that leaving the station might be a REALLY dumb idea...") dumb_rev_heads += user.mind return - if(user.faction == "ashwalker") - to_chat(user,"The unfamiliar light board makes no sense to your primitive mind. You cannot figure out the controls.") - return ..() /**********************Mining car (Crate like thing, not the rail car)**************************/