DayZ
Zens Car Workbench
MastaHigginZ 2023 年 9 月 30 日 下午 1:29
CanisterGasoline bug
The canister issue is caused by some older vehicle mods that overwrite the slots in CanisterGasoline class (rather than adding new slots using += as can now be done). So you need to overwrite that class again in your server mod with a full list of slots from your mods that support the canister. Should be something like this:
class CanisterGasoline: Bottle_Base { inventorySlot[]= { "CanisterGasoline", "CanisterGasoline1", "CanisterGasoline2" }; };
最后由 MastaHigginZ 编辑于; 2023 年 9 月 30 日 下午 1:46