Fixes a few bugs with armor, RIGs and fixes dreamchecker. (#11298)

This commit is contained in:
Matt Atlas
2021-02-24 15:59:42 +01:00
committed by GitHub
parent 2cfc521bfa
commit 43918c7602
9 changed files with 53 additions and 7 deletions
+2 -2
View File
@@ -81,7 +81,7 @@
if(W.isscrewdriver()) // Turning it into a crossbow
crafting = !crafting
if(!crafting)
to_chat(user, SPAN_NOTICE("You reassemble the RFD"))
to_chat(user, SPAN_NOTICE("You reassemble the RFD."))
else
to_chat(user, SPAN_NOTICE("The RFD can now be modified."))
src.add_fingerprint(user)
@@ -110,9 +110,9 @@
var/obj/item/gun/launcher/crossbow/RFD/CB = new(get_turf(user)) // can be found in crossbow.dm
forceMove(CB)
CB.stored_matter = src.stored_matter
user.drop_from_inventory(src)
qdel(src)
user.put_in_hands(CB)
add_fingerprint(user)
return
..()