Don't Starve Together

Don't Starve Together

45 ratings
45 Inventory Slots [Fixed + EquipSlot UI expand + Shift+Click support]
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
382.840 KB
13 Aug @ 4:02am
16 Aug @ 10:08am
13 Change Notes ( view )

Subscribe to download
45 Inventory Slots [Fixed + EquipSlot UI expand + Shift+Click support]

In 1 collection by Weexer
Szwedzki Stół Wex'a
86 items
Description
This mod is created based on: https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=3075429483

99% of the work and credits goes to original authors.
This is the only fully patched version on workshop to fix annoying problem with Shift + Click feature.

In original version of this mod, there was a problem when moving any food item / normal item from main inventory to let's say Crock pot / chest using Shift + Left mouse button (to cook food faster because why not?).

Instead it always moved that specific item to equipped and opened backpack ...and then you had to move it from backpack to crockpot or any chest which is ughhhhh...

Of course same issue applied in reversed direction - from Fridge / crockpot to backpack instead to main inventory.
My patch fixes all that and it works with any other vanilla / modded containers like Saltbox, Fridge, Magician's chest, Big chest, DST freezer etc..

Version v1.1.7 - Fixed stacking in backpack for all kind of scenarios, added compatibility with DJ'Paul's Sorting Inventory mod - My version on workshop coming soon too! :)

Version v1.1.6a - Compatibility with other modded containers for Shift + Click feature,
I made a mistake in earlier version and it didn't work for basic fridge and chests, now it's fixed!

Version v1.1.5.5 - Fixed infinite loading screen on dedicated servers

Version v1.1.5.4a - Fixed sorting in inventory based on chosed config options. Optimized code for better performance

Version v1.1.5.3b - Fixed freezes on relaunching existing world with mod turned on

Version v1.1.5.3a - Initial and patched version - see the whole description
18 Comments
13 hours ago 
作者大佬能不能对现在的海传做下兼容,开45格没问题,开5格装备栏会导致海传的划艇无法生成,试过其他的五格装备是没问题的,可以用的五格装备却没有45格格子
Moi 9 Oct @ 12:00am 
請問可以將 unicorn(獨角獸)的專屬背包 "机容仓库"跟"收纳痛包" 改成背包位嗎qwq 他穿到衣服去了
容垣 5 Sep @ 3:59am 
打开其他的容器放入物品后,背包无法用快捷键移出或者放入物品
容垣 5 Sep @ 3:58am 
反馈一个bug,和3173431824这个mod一起打开会导致背包失效,需要重新开关或重新装备才能使用背包
听风是雨 3 Sep @ 10:30am 
love you so much
容垣 1 Sep @ 2:46am 
重新装备背包才能用快捷键把物品放入背包
容垣 1 Sep @ 2:45am 
有bug反馈一下,我开了便携箱子打开便携箱子放入东西或者取出东西后,用快捷键把物品放入背包会失效
Timedeus 31 Aug @ 6:44am 
i am having a crash
[string "../mods/workshop-3548030233/modmain.lua"]:483: attempt to index local 'inventory' (a nil value)
LUA ERROR stack traceback:
../mods/workshop-3548030233/modmain.lua:483 in (upvalue) OLD_Rebuild (Lua) <452-711>
../mods/workshop-2484725102/main/widgets/inventorybar.lua:234 in (upvalue) oldRebuild (Lua) <233-236>
../mods/workshop-2973455580/containersort.lua:1761 in (method) Rebuild (Lua) <1760-1801>
scripts/widgets/inventorybar.lua:504 in (upvalue) oldOnUpdate (Lua) <455-588>
../mods/workshop-3548030233/modmain.lua:721 in () ? (Lua) <720-744>
=(tail call):-1 in () (tail) <-1--1>
scripts/frontend.lua:882 in (method) Update (Lua) <703-905>
scripts/update.lua:95 in () ? (Lua) <33-138>
影幻521(Fantasy) 29 Aug @ 5:02am 
下面是原mod下TC大佬修复方法
TCchen 2 月 20 日 上午 5:16 
解决附身暗影心房无法生成的问题

在modmain.lua的300多行的位置找到OnDeath函数:
local function OnDeath(inst)
if inst.components.inventory ~= nil then
inst.components.inventory:DropEverything(true)
end
end
把它变成这样:
local function OnDeath(inst)
if inst.components.inventory ~= nil and inst.prefab ~= "chest_mimic_revealed" then
inst.components.inventory:DropEverything(true)
end
end

附身暗影心房会在暴躁箱子的死亡事件生成。同名死亡事件可以有多个,会按顺序执行,但45格背包的这个优先级很高,在转换物品之前就会把所有物品都先丢出去。

怎样找到modmain.lua这个文件?
找到steam的根目录~\steamapps\workshop\content\322330\3075429483\modmain.lua,找到之后记事本打开,修改,保存,重进存档即可。
影幻521(Fantasy) 29 Aug @ 4:57am 
It seems that the Irascible Box cannot transform the Shadow Heart into the Possessed Shadow Heart. The original mod also has this bug
似乎暴躁箱子无法转化暗影之心为附身暗影心房,原mod也存在此bug