]> git.rm.cloudns.org Git - voretournament/voretournament.git/commitdiff
Small arrangements to my last change
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Sun, 12 Sep 2010 01:31:27 +0000 (04:31 +0300)
committerMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Sun, 12 Sep 2010 01:31:27 +0000 (04:31 +0300)
data/qcsrc/client/main.qh
data/qcsrc/client/sbar.qc
data/qcsrc/server/bot/havocbot/vore_ai.qc
data/qcsrc/server/vore.qc

index 10d1fd66407607c12842837107c49eee851558ed..3b6aadee953f62441ce3e16f2f41e28279a4014d 100644 (file)
@@ -164,7 +164,8 @@ void centerprint(string strMessage);
 float armorblockpercent;\r
 float g_weaponswitchdelay;\r
 \r
-float g_vore, g_balance_vore_swallow_limit;\r
+float g_vore;\r
+float g_balance_vore_swallow_limit;\r
 \r
 //hooks\r
 float calledhooks;\r
index 9db2566f77d5ac6a276400a6eea580a685358f35..16b34b12f7c658dd44c39767c084af482db0553e 100644 (file)
@@ -2943,7 +2943,7 @@ void Sbar_Draw (void)
                fade = 3.2 - 2 * (time - weapontime);\r
                fade = bound(0.7, fade, 1);\r
 \r
-               if(g_vore) // only when the vore system is enabled\r
+               if(g_vore) // only when the vore system is active\r
                {\r
                        // draw the stomach board\r
                        if (cvar("viewsize") <= 100) {\r
index 0b356c1a01c085dceaef7a819f41164a162c6da7..7301fb97f39cd6315c91e83ca39f12d14d399ac4 100644 (file)
@@ -77,7 +77,7 @@ void Vore_AI()
 {
        // main vore AI code
 
-       if(!cvar("g_vore"))
+       if(!cvar("g_vore")) // the vore system is disabled
                return;
        if(cvar("bot_nofire") || !skill || (g_rpg && cvar("g_rpg_botattack") < 1))
                return;
index 971366103c05062c5a608c748dd788fc3c030940..9c8f8ca52a4b85e3b789b7a3e04114cb9d7f7219 100644 (file)
@@ -318,7 +318,7 @@ void Vore()
 {\r
        // main vore code, this is where it all happens\r
 \r
-       if(!cvar("g_vore")) // vore system is disabled\r
+       if(!cvar("g_vore")) // the vore system is disabled\r
        {\r
                Vore_Disconnect();\r
                return;\r