-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SPE Compat - Add Spearhead 1944 fuel drums to refuel system (#9505)
* Create land.hpp * Update CfgVehicles.hpp
- Loading branch information
1 parent
9873bf5
commit 60f0249
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// fuel objects | ||
|
||
class SPE_items_base; | ||
class Land_SPE_Fuel_Barrel_German: SPE_items_base { | ||
transportFuel = 0; | ||
EGVAR(refuel,hooks)[] = {{0, 0, 0.5}}; // reference is Land_FlexibleTank_01_F | ||
EGVAR(refuel,fuelCargo) = 300; // reference is Land_FlexibleTank_01_F | ||
}; | ||
class Land_SPE_Fuel_Barrel_US: SPE_items_base { | ||
transportFuel = 0; | ||
EGVAR(refuel,hooks)[] = {{0, 0, 0.5}}; // reference is Land_FlexibleTank_01_F | ||
EGVAR(refuel,fuelCargo) = 300; // reference is Land_FlexibleTank_01_F | ||
}; |