DayZ

DayZ

Zens Car Workbench
MastaHiggins 30 Sep, 2023 @ 1:29pm
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" }; };
Last edited by MastaHiggins; 30 Sep, 2023 @ 1:46pm