]> git.xonotic.org Git - voretournament/voretournament.git/commitdiff
Correct respawn time message when eaten
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Sun, 3 Feb 2013 01:06:11 +0000 (03:06 +0200)
committerMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Sun, 3 Feb 2013 01:06:11 +0000 (03:06 +0200)
data/qcsrc/client/hud.qc
docs/TODO.txt

index cd3922623a5dd6e65fe5673709b5255cef49f72c..4615381e30e56eaa36543680f3aea83af007e8c2 100644 (file)
@@ -1650,7 +1650,9 @@ void Sbar_DrawScoreboard()
                {\r
                        // a negative number means we are awaiting respawn, time value is still the same\r
                        respawn_time *= -1; // remove mark now that we checked it\r
-                       if(time >= respawn_time) // don't show a negative value while the server is respawning the player (lag)\r
+                       if(getstati(STAT_VORE_EATEN))\r
+                               str = strcat("^1Cannot respawn while in the stomach");\r
+                       else if(time >= respawn_time) // don't show a negative value while the server is respawning the player (lag)\r
                                str = strcat("^1Respawning...");\r
                        else\r
                                str = strcat("^1Respawning in ^3", ftos_decimals(respawn_time - time, 2), "^1 seconds...");\r
index e0f070c16335b1a4318be1589f0d7d292356ecb1..d18888fab80e384013777f4744ba319a747408bb 100644 (file)
 \r
 - 0.8: Add patterns for stomach kicking, where you need to match some movement keys\r
 \r
-- 0.8: Tweak balance so that less damage is dealt and vore lasts more\r
-\r
-- 0.8 BUG: When inside the stomach, the "Respawning in" field inside the scoreboard shouldn't keep resetting over and over again, and instead say something else
+- 0.8: Tweak balance so that less damage is dealt and vore lasts more
 \r
 - 0.8: Smart hint system detecting gameplay errors client-side\r
 \r
 - 0.8: Make acceleration / deceleration play a role in swallow speed\r
 \r
 - 0.8: Does the "viewsize" cvar still need to be used for the HUD?\r
+\r
+- 0.8 BUG: Own health shows as ... in the stomachboard (instead of "self")\r
+\r
+- 0.8: Bring back balances from older versions of VT as other cfg files\r
+\r
+- 0.8: Wind effect when going fast (audio)\r
+\r
+- 0.8 BUG: Fuel icon is a bit too strecthed, edit it in the HUD config\r