Removes All Weapons

This commit is contained in:
Fox McCloud
2018-04-15 16:25:56 -04:00
parent 8b576c4d42
commit 5c4aa9b3fd
1100 changed files with 17642 additions and 17666 deletions
@@ -11,7 +11,7 @@
/obj/structure/kitchenspike_frame/attackby(obj/item/I, mob/user, params)
add_fingerprint(user)
if(istype(I, /obj/item/weapon/wrench))
if(istype(I, /obj/item/wrench))
if(anchored)
to_chat(user, "<span class='notice'>You unwrench [src] from the floor.</span>")
anchored = 0
@@ -40,8 +40,8 @@
/obj/structure/kitchenspike/attackby(obj/item/weapon/grab/G as obj, mob/user as mob)
if(istype(G, /obj/item/weapon/crowbar))
/obj/structure/kitchenspike/attackby(obj/item/grab/G as obj, mob/user as mob)
if(istype(G, /obj/item/crowbar))
if(!buckled_mob)
playsound(loc, G.usesound, 100, 1)
if(do_after(user, 20 * G.toolspeed, target = src))
@@ -53,7 +53,7 @@
else
to_chat(user, "<span class='notice'>You can't do that while something's on the spike!</span>")
return
if(!istype(G, /obj/item/weapon/grab) || !G.affecting)
if(!istype(G, /obj/item/grab) || !G.affecting)
return
if(buckled_mob)
to_chat(user, "<span class = 'danger'>The spike already has something on it, finish collecting its meat first!</span>")