Motorcycles and BikesSolved

Will this plugin get an update to add Motorcycles and Bikes?

Until he gets around to updating it just worked on the code myself, fixed the errors not making plugin work for this forced wipe and added the new vehicles, the names are motorbike, motorbike_sidecar, pedalbike and pedaltrike

PortableVehicles.cs

In case the author wants to add it:

case "bicycle":
         return 3282155333;

case "trike":
         return 3282155123;

case "motorbike":
         return 3282156094;

case "motorbike_sidecar":
         return 3282155569;
new VehicleEntry
            {
                skinId = 3282155333,
                displayName = "Bicycle",
                prefab = "assets/content/vehicles/bikes/pedalbike.prefab",
            },
            new VehicleEntry
            {
                skinId = 3282155123,
                displayName = "Trike",
                prefab = "assets/content/vehicles/bikes/pedaltrike.prefab",
            },
            new VehicleEntry
            {
                skinId = 3282156094,
                displayName = "Motorbike",
                prefab = "assets/content/vehicles/bikes/motorbike.prefab",
            },
            new VehicleEntry
            {
                skinId = 3282155569,
                displayName = "Motorbike Sidecar",
                prefab = "assets/content/vehicles/bikes/motorbike_sidecar.prefab",
            }
Locked automatically