diff --git a/code/game/objects/items/weapons/RCD.dm b/code/game/objects/items/weapons/RCD.dm
index a2565905f47..32297c4ffd4 100644
--- a/code/game/objects/items/weapons/RCD.dm
+++ b/code/game/objects/items/weapons/RCD.dm
@@ -15,9 +15,6 @@
desc = "A device used to rapidly build and deconstruct walls, floors and airlocks."
icon = 'icons/obj/tools.dmi'
icon_state = "rcd"
- opacity = 0
- density = FALSE
- anchored = FALSE
flags = CONDUCT | NOBLUDGEON
force = 0
throwforce = 10
@@ -163,11 +160,11 @@
to_chat(user, "The RCD can't hold any more matter-units.")
return
- matter += R.ammoamt
if(!user.unEquip(R))
to_chat(user, "[R] is stuck to your hand!")
return
+ matter += R.ammoamt
qdel(R)
playsound(loc, 'sound/machines/click.ogg', 50, 1)
to_chat(user, "The RCD now holds [matter]/[max_matter] matter-units.")