unneeded parens

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
This commit is contained in:
lambdatiger 2024-01-17 18:03:44 -06:00 committed by GitHub
parent 4727386c07
commit 16e699e387
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,9 +39,9 @@ _box params ["_lowP", "_upP"];
// adjust with stance
switch (stance _object) do {
case ("STAND"): {_upP set [2, 1.9];};
case ("CROUCH"): {_upP set [2, 1.3];};
case ("PRONE"): {_upP set [2, 0.8];};
case "STAND": {_upP set [2, 1.9];};
case "CROUCH": {_upP set [2, 1.3];};
case "PRONE": {_upP set [2, 0.8];};
};
private _centerPoint = ASLToAGL getPosASL _object;