147 Chute - Failed to compile: Chute.cs(200,36): error CS1061: Type `BaseMountable' does not contain a definition for `needsVehicleTick' and no extension method `needsVehicleTick' of type `BaseMountable' could be found. Are you missing an assembly reference?
Type `BaseMountable' does not contain a definition for `needsVehicleTick'Fixed
Note: spawn-mini was updated yesterday and the unupdated version throws a SIMILAR error, might help point you in the right direction to see what they changed to fix it
edit: spawn mini didn't have anything related, however another plugin from another site did:
to fix the chute plugin, change line 198 from
if (hasmount) hasmount.needsVehicleTick = true;to
if (hasmount) hasmount.isMobile = true; Locked automatically