Skip to content

Commit

Permalink
balance patches
Browse files Browse the repository at this point in the history
  • Loading branch information
LudwigVonChesterfield committed Dec 6, 2023
1 parent 6ab4da7 commit 6f05597
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/game/machinery/constructable_frame.dm
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@
if(!anchored)
to_chat(user, "<span class='warning'>The frame needs to be secured first!</span>")
return
if(issilicon(user) && istype(P, /obj/item/weapon/circuitboard/manipulator))
to_chat(user, "<span class='warning'>Sorry! Automatic protocols preventing AI from becoming too powerful can't allow you to assemble this!</span>")
return
var/obj/item/weapon/circuitboard/B = P
if(B.board_type == "machine")
if(!user.drop_from_inventory(P, src))
Expand Down
2 changes: 2 additions & 0 deletions code/modules/mob/living/silicon/robot/robot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,8 @@
to_chat(usr, "The borg must choose a module before he can be upgraded!")
else if(U.locked)
to_chat(usr, "The upgrade is locked and cannot be used yet!")
else if(cell)
to_chat(usr, "Remove the power cell first.")
else
if(U.action(src))
to_chat(usr, "You apply the upgrade to [src]!")
Expand Down

0 comments on commit 6f05597

Please sign in to comment.