RHS Compat - Fix GREF canoes refuel interaction (#6575)

* Fix RHS GREF canoes refuel interaction

* Removed ace_refuel from requiredAddons

* fix inheritance
This commit is contained in:
Wakbub 2018-09-15 18:53:28 +02:00 committed by PabstMirror
parent ae6a2709f3
commit 64cc287408
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,7 @@
class CfgVehicles {
class Rubber_duck_base_F;
class rhsgref_canoe_base: Rubber_duck_base_F {
// Canoes are propelled by paddlers
EGVAR(refuel,canReceive) = 0;
};
};

View File

@ -8,6 +8,7 @@ class CfgPatches {
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"rhsgref_main", "rhsgref_c_weapons"};
author = ECSTRING(common,ACETeam);
authors[] = {"PabstMirror", "Ruthberg", "Anton"};
url = ECSTRING(main,URL);
VERSION_CONFIG;
};
@ -16,3 +17,4 @@ class CfgPatches {
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
#include "CfgWeapons.hpp"
#include "CfgVehicles.hpp"