Merge pull request #3770 from Citadel-Station-13/upstream-merge-32328

[MIRROR] Refactors the RCD code a tiny bit. One minor balance change
This commit is contained in:
LetterJay
2017-11-03 00:14:58 -05:00
committed by GitHub
2 changed files with 18 additions and 17 deletions
@@ -256,11 +256,10 @@
dismantle_wall()
/turf/closed/wall/r_wall/rcd_vals(mob/user, obj/item/construction/rcd/the_rcd)
if(!the_rcd.canRturf)
return FALSE
return ..()
if(the_rcd.canRturf)
return ..()
/turf/closed/wall/r_wall/rcd_act(mob/user, obj/item/construction/rcd/the_rcd, passed_mode)
if(!the_rcd.canRturf)
return FALSE
return ..()
if(the_rcd.canRturf)
return ..()