lilwhitemouse / RimWorld-LWM.DeepStorage

A mod for the game RimWorld that has a set of Deep Storage Units that allow storing more than one item at a location.
GNU General Public License v3.0
29 stars 36 forks source link

Cannot store winter clothes and armor in Clothing Rack #50

Open evorios opened 4 years ago

evorios commented 4 years ago

A clothes rack is not suitable for storage in most winter clothes and armor with mass more 2.5 kg.

https://github.com/lilwhitemouse/RimWorld-LWM.DeepStorage/blob/43cbd4f998b6820d5903ed9ac0c7f677009ac4fe/_Mod/LWM.DeepStorage/Defs/Deep_Storage.xml#L515 https://github.com/lilwhitemouse/RimWorld-LWM.DeepStorage/blob/43cbd4f998b6820d5903ed9ac0c7f677009ac4fe/_Mod/LWM.DeepStorage/Defs/Deep_Storage.xml#L551

In contrast, a weapon cabinet holds 30 kg.

https://github.com/lilwhitemouse/RimWorld-LWM.DeepStorage/blob/9304c8024b71fa22616903af9acc065aa63cb7d7/_Mod/LWM.DeepStorage/Defs/Weapon_Lockers.xml#L7 https://github.com/lilwhitemouse/RimWorld-LWM.DeepStorage/blob/9304c8024b71fa22616903af9acc065aa63cb7d7/_Mod/LWM.DeepStorage/Defs/Weapon_Lockers.xml#L53

Last version of plugin: 1.0.0.9.

lilwhitemouse commented 4 years ago

Clothing rack also has minimum number of stacks (minNumberStacks) of 5, so no matter what, you can store 5 things there.

evorios commented 4 years ago

I change <maxTotalMass>2.5</maxTotalMass> to <maxTotalMass>50</maxTotalMass> and it work now, only way. But I found one bug yet: I cannot store wort nowhere, absolutely nowhere. It is possible that this is due to the mods. 2020-01-26_232005.jpg

evorios commented 4 years ago

I did more research and came to the following conclusion: if storage of a specified item is forbidden by me in storages with a higher priority, then no place is searched for in standard storages with a lower priority.

The solution to the problem is to create a repository with the same high priority especially for these items that were prohibited.

lilwhitemouse commented 4 years ago

"if storage of a specified item is forbidden by me in storages with a higher priority, then no place is searched for in standard storages with a lower priority." That should not be the case - are you sure nothing else is interfering with storage? For example, only one person can store at any given cell at a time, so if the storage is busy, no one can use it.

Re: wort: I believe you are correct - there are no places to store Wort. Milk is storable in food baskets only because I didn't specifically take it out. I had not intended liquids to go anywhere. Wort CAN go on the large shelf units.

lilwhitemouse commented 4 years ago

I did more research and came to the following conclusion: if storage of a specified item is forbidden by me in storages with a higher priority, then no place is searched for in standard storages with a lower priority.

The solution to the problem is to create a repository with the same high priority especially for these items that were prohibited.

Can you give a specific example?