Hotfix last rust update

Find

var fuelItem = heli.GetFuelSystem()?.GetFuelItem();​
replace to
var fuelItem = (heli.GetFuelSystem() as EntityFuelSystem)?.GetFuelItem();​

Does this fix other things not stacking?  For instance, wood has random stacking; one stack has 5480, another has 2500, and another has 1000 and none of them can take more.

asrYFSmDfkdu8TR.png JackReigns

Does this fix other things not stacking? 

No. Only restores the plugin to work.

Where is the Heli text? i cant find it in the json

its not working, wood stone and metal is not stacking

I now know why the plugin is not loading. There are instructions here to replace a line, but that's exactly
where an error has crept in. To everyone looking for this in the config - No.
You have to go into the plugin (.cs). There is a space in line 285 at position 53. You have to delete that.

Incorrect:
var fuelItem = (heli.GetFuelSystem() as EntityFuelSystem)?.GetFuelItem();

Correct:
var fuelItem = (heli.GetFuelSystem()as EntityFuelSystem)?.GetFuelItem();