mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
roar message now uses the correct number of kills instead of 20
This commit is contained in:
parent
e52f6a9bcb
commit
24b8bcaf5e
2
game.cpp
2
game.cpp
@ -2417,7 +2417,7 @@ bool attackMonster(cell *c, flagtype flags, eMonster killer) {
|
|||||||
int ntk = tkills();
|
int ntk = tkills();
|
||||||
int ntkt = killtypes();
|
int ntkt = killtypes();
|
||||||
|
|
||||||
if(tkt < 20 && ntkt >= 20) {
|
if(tkt < R20 && ntkt >= R20) {
|
||||||
addMessage(XLAT("You hear a distant roar!"));
|
addMessage(XLAT("You hear a distant roar!"));
|
||||||
playSound(NULL, "message-roar");
|
playSound(NULL, "message-roar");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user