Fixed an incorrect module setting description

This commit is contained in:
ulteq 2015-04-26 22:33:11 +02:00
parent 58395b166b
commit 9bd32f5797
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ class ACE_Settings {
}; };
class GVAR(simulationRadius) { class GVAR(simulationRadius) {
displayName = "Simulation Radius"; displayName = "Simulation Radius";
description = "Defines the radius (in meters) in which advanced ballistics are applied"; description = "Defines the radius around the player (in meters) at which projectiles are wind deflected";
typeName = "SCALAR"; typeName = "SCALAR";
value = 3000; value = 3000;
}; };

View File

@ -31,7 +31,7 @@ class CfgVehicles {
}; };
class simulationRadius { class simulationRadius {
displayName = "Simulation Radius"; displayName = "Simulation Radius";
description = "Defines the radius (in meters) in which advanced ballistics are applied"; description = "Defines the radius around the player (in meters) at which projectiles are wind deflected";
typeName = "NUMBER"; typeName = "NUMBER";
defaultValue = 3000; defaultValue = 3000;
}; };