Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/base/game.h')
-rw-r--r--src/game/base/game.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/game/base/game.h b/src/game/base/game.h
index d879a30..dd47cef 100644
--- a/src/game/base/game.h
+++ b/src/game/base/game.h
@@ -36,7 +36,7 @@ const unsigned int station_enttype = 262;
const unsigned int cargopod_enttype = 263;
// planet docking distance
-const float planet_safe_distance = 150.0f;
+const float planet_safe_distance = 50.0f;
const float jump_timer_delay = 5.0f;
const float impulse_timer_delay = 3.0f;
@@ -85,12 +85,12 @@ public:
/// game variable: enable or disable development mode (cheat mode)
static core::Cvar *g_devel;
+ /// game variable: number of seconds it takes for 1 unit of cargo to deplete from station inventories
+ static core::Cvar *g_deplete;
+
/// physics variable: default damping factor of space
- static core::Cvar *g_damping;
+ static core::Cvar *g_damping;
- /// game variable: amount of time dynamic objects are kept alive when there are no players
- static core::Cvar *g_keepalive;
-
private:
bool load_world();