Only award Revenge trophy if epic battle.

This commit is contained in:
Steve 2019-04-08 11:33:52 +01:00
parent c453074778
commit 02bea0492a
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ static void checkCollisions(Bullet *b)
battle.lastKilledPlayer = b->owner;
}
if (b->owner == player && e == battle.lastKilledPlayer)
if (battle.isEpic && b->owner == player && e == battle.lastKilledPlayer)
{
awardTrophy("REVENGE");
}