Update Kamaz.hpp

Updated the logic of the fuel capacity since Epoch currently only uses the one variable for Refuel Trucks.
This commit is contained in:
McKeighan
2014-08-25 11:18:42 -04:00
parent 69b9e84e99
commit 0701e5b818

View File

@@ -85,8 +85,8 @@ class KamazRefuel_DZ: KamazRefuel {
hiddenSelections[] = {}; hiddenSelections[] = {};
class TransportMagazines{}; class TransportMagazines{};
class TransportWeapons{}; class TransportWeapons{};
transportFuel = 0; fuelCapacity = 10400;
transportFuel = 10400; // refueltruck //For future Developement = transportFuel = 10400; // refueltruck
}; };
class KamazRefuel_DZE1: KamazRefuel_DZ { class KamazRefuel_DZE1: KamazRefuel_DZ {
maxspeed = 100; //base 80 maxspeed = 100; //base 80
@@ -112,5 +112,5 @@ class KamazRefuel_DZE3: KamazRefuel_DZE2 {
}; };
}; };
class KamazRefuel_DZE4: KamazRefuel_DZE3 { class KamazRefuel_DZE4: KamazRefuel_DZE3 {
fuelCapacity = 615; // Refuel Base 303 fuelCapacity = 10700; // Increase the total fuel capacity of the Refuel truck by the additional normal sized fuel tank of a Ural.
}; };