Project Zomboid

Project Zomboid

[B42/41] Better Clothing Info Comparison
Elk 11 月 9 日 下午 7:09
Possible fix for fluid transfer menu errors
This is just a quick fix for the error spam that happens when you hover a liquid in the liquid info menu
Change the text in bcic_Tooltip.lua for "function ISToolTipInv:bcic_render()" from

function ISToolTipInv:bcic_render() if not self.item:IsClothing() then original_render(self) return; end

to

function ISToolTipInv:bcic_render() -- Ensure self.item exists and supports IsClothing() if not self.item or not self.item.IsClothing or not self.item:IsClothing() then if original_render then original_render(self); end return; end
最后由 Elk 编辑于; 11 月 9 日 下午 7:11