mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Cargo - Fix can't load Slingload_01_Base_F
(#8437)
* fix can't load Slingload_01_Base_F 20ft containers (`Land_Cargo20_military_green_F`) can be loaded but all children from `Slingload_01_Base_F` which share the same real size of a 20ft container can't be loaded (ex: `B_Slingload_01_Ammo_F`) * add a comment next to the changed line add a comment next to the changed line indicating why it has to be like that (the point of this PR) for future source reference
This commit is contained in:
parent
d5328781db
commit
e31d931078
@ -356,8 +356,8 @@ class CfgVehicles {
|
||||
|
||||
//Huron 20ft containers
|
||||
class Slingload_01_Base_F: Slingload_base_F {
|
||||
GVAR(canLoad) = 0;
|
||||
GVAR(size) = -1;
|
||||
GVAR(canLoad) = 1;
|
||||
GVAR(size) = 50; // Use same size value from 20ft containers for consistancy
|
||||
};
|
||||
class B_Slingload_01_Cargo_F: Slingload_01_Base_F { // Huron Cargo
|
||||
GVAR(space) = 20;
|
||||
|
Loading…
Reference in New Issue
Block a user