From 1047ebd828a182cab72f221274064c363dafe48f Mon Sep 17 00:00:00 2001 From: "tronaldnwn@hotmail.com" Date: Sun, 27 Mar 2011 09:45:33 +0000 Subject: [PATCH] Bug fix: I placed a comma where I wasn't meant to, and then Nuke agents didn't get robust pills to kill people with. I feel bad. Mining Update Minor: Picks make a slight noise when they pick into mineral walls. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1287 316c924e-a436-60f5-8080-3fe189b3f50e --- code/WorkInProgress/mining.dm | 2 +- code/game/gamemodes/nuclear/nuclear.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/WorkInProgress/mining.dm b/code/WorkInProgress/mining.dm index 52d93a12c95..dda03101e86 100644 --- a/code/WorkInProgress/mining.dm +++ b/code/WorkInProgress/mining.dm @@ -777,7 +777,7 @@ proc/move_mining_shuttle() return user << "\red You start picking." - //playsound(src.loc, 'Welder.ogg', 100, 1) + playsound(user, 'Genhit.ogg', 20, 1) if(do_after(user,W:digspeed)) user << "\blue You finish cutting into the rock." diff --git a/code/game/gamemodes/nuclear/nuclear.dm b/code/game/gamemodes/nuclear/nuclear.dm index 33ebf42492a..999ce7c6467 100644 --- a/code/game/gamemodes/nuclear/nuclear.dm +++ b/code/game/gamemodes/nuclear/nuclear.dm @@ -123,7 +123,7 @@ synd_mob.equip_if_possible(new /obj/item/weapon/card/id/syndicate(synd_mob), synd_mob.slot_wear_id) synd_mob.equip_if_possible(new /obj/item/weapon/storage/backpack(synd_mob), synd_mob.slot_back) synd_mob.equip_if_possible(new /obj/item/weapon/ammo/a357(synd_mob), synd_mob.slot_in_backpack) - synd_mob.equip_if_possible(new /obj/item/weapon/reagent_containers/pill/cyanide, (synd_mob), synd_mob.slot_in_backpack) //Because it needed to be upgraded by someone - Micro + synd_mob.equip_if_possible(new /obj/item/weapon/reagent_containers/pill/cyanide(synd_mob), synd_mob.slot_in_backpack) //Because it needed to be upgraded by someone - Micro var/obj/item/weapon/gun/revolver/G = new /obj/item/weapon/gun/revolver(synd_mob) G.bullets = 7 synd_mob.equip_if_possible(G, synd_mob.slot_belt)