From: MirceaKitsune Date: Sun, 18 Mar 2012 15:03:26 +0000 (+0200) Subject: Undo part of a previous commit, which broke automatic digestion. Need to do something... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0243b0a40e569b2d063b17de1e59658c44287a69;p=voretournament%2Fvoretournament.git Undo part of a previous commit, which broke automatic digestion. Need to do something else for a feature I want, but in 0.8 at best --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index e26b6a62..b32c2d6d 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -159,6 +159,8 @@ void Vore_AutoDigest(entity e) return; if(g_rpg) return; // RPG is choice based, so don't do things automatically there + if(e.stomach_load) + return; // don't start digestion if we already ate someone, as that means we manually disabled it after the first prey and want it off if(clienttype(e) != CLIENTTYPE_REAL) return; // this feature is only for players, not bots if(Stomach_TeamMates_check(e)) diff --git a/docs/TODO.txt b/docs/TODO.txt index 25d138d0..79528ec8 100644 --- a/docs/TODO.txt +++ b/docs/TODO.txt @@ -168,4 +168,6 @@ - 0.7 | 0.8: Is it right to get screen flashes when team healing? -- 0.8: Why am I not seeing frags and death in the scoreboard in Team Deathmatch? \ No newline at end of file +- 0.8: Why am I not seeing frags and death in the scoreboard in Team Deathmatch? + +- 0.8: If we eat a team mate, then a consumable item, then the tea mate gets out, autodigest won't start digesting the consumable item \ No newline at end of file