From c0d16b7d184334a0b3f1f1ecedffba607da9d5ae Mon Sep 17 00:00:00 2001 From: "C.L" Date: Sun, 25 Sep 2022 03:03:33 -0400 Subject: [PATCH] whoops forgot a ) and left in previous var name --- code/game/objects/items/weapons/storage/bags.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index add1253d4ff..ee28f497b69 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -180,7 +180,7 @@ if(!silent) //Let's do a single check and then do more instead of a bunch at once. if(success && !failure && !max_pickup_reached) //Picked stuff up, did not reach capacity, did not reach max_pickup. to_chat(user, "You put everything in [src].") - else if(success && failure)) //Picked stuff up to capacity. + else if(success && failure) //Picked stuff up to capacity. to_chat(user, "You fill the [src].") else if(success && max_pickup_reached) //Picked stuff up to the max_pickup to_chat(user, "You fill the [src] with as much as you can grab in one go.") @@ -194,7 +194,7 @@ OB.stored_ore[ore] += ore_amount // Add the ore to the box stored_ore[ore] = 0 // Set the value of the ore in the satchel to 0. current_capacity = 0 // Set the amount of ore in the satchel to 0. - one_go_pickup = 0 + current_pickup = 0 /obj/item/weapon/storage/bag/ore/equipped(mob/user) ..()