Compats - Fix RHSUSF water Jerry Can having refuel actions (#8717)

This commit is contained in:
Whigital 2021-12-17 18:35:41 +01:00 committed by GitHub
parent efa1980990
commit c6ed114758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -11,7 +11,7 @@ class Extended_PreInit_EventHandlers {
};
class Extended_InitPost_EventHandlers {
class rhsusf_props_JerryCan_Base {
class rhsusf_props_ScepterMFC_Base {
class ADDON {
init = QUOTE(call EFUNC(refuel,makeJerryCan));
};

View File

@ -577,5 +577,11 @@ class CfgVehicles {
class rhsusf_props_JerryCan_Base: Items_base_F {
EGVAR(cargo,canLoad) = 1;
EGVAR(cargo,size) = 1;
EGVAR(dragging,canCarry) = 1;
};
class rhsusf_props_ScepterMWC_Base: rhsusf_props_JerryCan_Base {
EXGVAR(field_rations,waterSupply) = 20;
EXGVAR(field_rations,offset)[] = {-0.13, 0, 0.2};
};
};