From 7b338ca9d0188efd4a35463c905ed1ffad00950a Mon Sep 17 00:00:00 2001 From: FlightControl Date: Wed, 29 Aug 2018 08:18:03 +0200 Subject: [PATCH] Fixed the weight of an average infantry from 70 kg to 95 kg. --- Moose Development/Moose/Wrapper/Positionable.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/Moose/Wrapper/Positionable.lua b/Moose Development/Moose/Wrapper/Positionable.lua index 08889ea78..aa564c06a 100644 --- a/Moose Development/Moose/Wrapper/Positionable.lua +++ b/Moose Development/Moose/Wrapper/Positionable.lua @@ -1009,7 +1009,7 @@ do -- Cargo ["TPZ"] = 10, } - local CargoBayWeightLimit = ( Weights[Desc.typeName] or 0 ) * 70 + local CargoBayWeightLimit = ( Weights[Desc.typeName] or 0 ) * 95 self.__.CargoBayWeightLimit = CargoBayWeightLimit end end