Please update itFixed

please update plugin when rust game updates hit :(

Error while compiling PortableVehicles: 'IFuelSystem' does not contain a definition for 'fuelStorageInstance' and no accessible extension method 'fuelStorageInstance' accepting a first argument of type 'IFuelSystem' could be found (are you missing a using directive or an assembly reference?) | Line: 211, Pos: 35

delete these lines (or comment them out) in the code:

var fs = entity.GetFuelSystem();
if (fs != null && !fs.fuelStorageInstance.Get(true).IsLocked() && fs.HasFuel())
{
Message(player, "Fuel");
return true;
}

*** ALSO DELETE THESE***

var fs = balloon.fuelSystem;
if (fs != null && !fs.fuelStorageInstance.Get(true).IsLocked() && fs.HasFuel())
{
Message(player, "Fuel");
return true;
}

Will then compile and work for now

Locked automatically