diff --git a/code/game/objects/items/rcd/RCD.dm b/code/game/objects/items/rcd/RCD.dm index 0e6a7bccf39..ffc8a4ed8fd 100644 --- a/code/game/objects/items/rcd/RCD.dm +++ b/code/game/objects/items/rcd/RCD.dm @@ -497,7 +497,7 @@ if(!borgy.cell) balloon_alert(user, "no cell found!") return FALSE - if(borgy.cell.charge >= (amount * energyfactor)) + if(borgy.cell.charge < (amount * energyfactor)) balloon_alert(user, "insufficient charge!") return FALSE return dry_run ? TRUE : borgy.cell.use(amount * energyfactor)