diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_ch.dm b/code/modules/client/preference_setup/loadout/loadout_utility_ch.dm index f9415121bd..952304cca8 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility_ch.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility_ch.dm @@ -148,16 +148,16 @@ display_name = "saddle bag, common (Light)" path = /obj/item/storage/backpack/saddlebag_common/lightweight slot = slot_back - cost = 2 + cost = 1 //These are just retextured backpacks. /datum/gear/utility/saddlebag_common/robust/lightweight display_name = "saddle bag, robust (Light)" path = /obj/item/storage/backpack/saddlebag_common/robust/lightweight slot = slot_back - cost = 2 + cost = 1 //These are just retextured backpacks. /datum/gear/utility/saddlebag_common/vest/heavy display_name = "taur duty vest (backpack) (Heavy)" path = /obj/item/storage/backpack/saddlebag_common/vest/heavy slot = slot_back - cost = 1 + cost = 2 //Dufflebag diff --git a/modular_chomp/code/game/objects/items/weapons/storage/backpack.dm b/modular_chomp/code/game/objects/items/weapons/storage/backpack.dm index c182ebf182..1b5852dda4 100644 --- a/modular_chomp/code/game/objects/items/weapons/storage/backpack.dm +++ b/modular_chomp/code/game/objects/items/weapons/storage/backpack.dm @@ -1,8 +1,8 @@ /obj/item/storage/backpack/saddlebag_common/lightweight name = "Taur Saddlebags (Light)" desc = "A saddle that holds items. Lighter than its heavier cousin, as the cost of storage space." - max_storage_space = INVENTORY_DUFFLEBAG_SPACE //Saddlebags can hold more, like dufflebags - slowdown = 0 //And are slower, too... + max_storage_space = INVENTORY_STANDARD_SPACE + slowdown = 0 /obj/item/storage/backpack/saddlebag_common/robust/lightweight name = "Lightweight Saddlebags"