holding exact required credits will now bring success

Signed-off-by: Cael_Aislinn <cael_aislinn@yahoo.com.au>
This commit is contained in:
Cael_Aislinn
2012-08-03 20:25:09 +10:00
parent 1c2bb7e750
commit 3f4d2500f6

View File

@@ -1205,7 +1205,7 @@ datum
var/held_credits = 0
for(var/obj/item/weapon/money/M in owner.current.get_contents())
held_credits += M.worth
if(held_credits > steal_amount)
if(held_credits >= steal_amount)
return 1
return 0