Merge pull request #5331 from Mechoid/SmallAnomalistFixes

Fix #5316 and #5220
This commit is contained in:
Anewbe
2018-06-06 17:49:38 -05:00
committed by VirgoBot
parent 3106baef73
commit 8144628015
2 changed files with 4 additions and 0 deletions
@@ -125,6 +125,9 @@
user << browse(dat, "window=alien_replicator")
/obj/machinery/replicator/attackby(obj/item/weapon/W as obj, mob/living/user as mob)
if(!W.canremove || !user.canUnEquip(W)) //No armblades, no grabs. No other-thing-I-didn't-think-of.
to_chat(user, "<span class='notice'>You cannot put \the [W] into the machine.</span>")
return
user.drop_item()
W.loc = src
stored_materials.Add(W)
@@ -1,6 +1,7 @@
/obj/item/clothing/suit/bio_suit/anomaly
name = "Anomaly suit"
desc = "A sealed bio suit capable of insulating against exotic alien energies."
icon = 'icons/obj/clothing/spacesuits.dmi'
icon_state = "engspace_suit"
item_state = "engspace_suit"
armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 100)