mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
non-player multikills are no longer counted for achievements
This commit is contained in:
parent
c3feb7ddb7
commit
b042a457cc
24
game.cpp
24
game.cpp
@ -4977,8 +4977,10 @@ void sideAttack(cell *mf, int dir, eMonster who, int bonuskill) {
|
|||||||
sideAttack(mf, dir, who, 2, itOrbSide2);
|
sideAttack(mf, dir, who, 2, itOrbSide2);
|
||||||
sideAttack(mf, dir, who, 3, itOrbSide3);
|
sideAttack(mf, dir, who, 3, itOrbSide3);
|
||||||
|
|
||||||
int kills = tkills() - k + bonuskill;
|
if(who == moPlayer) {
|
||||||
if(kills >= 5) achievement_gain("MELEE5");
|
int kills = tkills() - k + bonuskill;
|
||||||
|
if(kills >= 5) achievement_gain("MELEE5");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void stabbingAttack(cell *mf, cell *mt, eMonster who, int bonuskill) {
|
void stabbingAttack(cell *mf, cell *mt, eMonster who, int bonuskill) {
|
||||||
@ -5067,15 +5069,17 @@ void stabbingAttack(cell *mf, cell *mt, eMonster who, int bonuskill) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(numsh) achievement_count("STAB", numsh, 0);
|
if(who == moPlayer) {
|
||||||
|
if(numsh) achievement_count("STAB", numsh, 0);
|
||||||
|
|
||||||
|
if(numlance && numflail && numsh) achievement_gain("MELEE3");
|
||||||
|
|
||||||
if(numlance && numflail && numsh) achievement_gain("MELEE3");
|
if(numlance + numflail + numsh + numslash + bonuskill >= 5) achievement_gain("MELEE5");
|
||||||
|
|
||||||
if(numlance + numflail + numsh + numslash + bonuskill >= 5) achievement_gain("MELEE5");
|
if(numsh == 2) {
|
||||||
|
if(lastdouble == turncount-1) achievement_count("STAB", 4, 0);
|
||||||
if(numsh == 2) {
|
lastdouble = turncount;
|
||||||
if(lastdouble == turncount-1) achievement_count("STAB", 4, 0);
|
}
|
||||||
lastdouble = turncount;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user