1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 01:16:50 +00:00

Hunting Dogs are now slower in coop Shmup

This commit is contained in:
Zeno Rogue 2017-12-03 20:14:38 +01:00
parent 7f974c8e4a
commit 5710c665da

View File

@ -2310,7 +2310,7 @@ void moveMonster(monster *m, int delta) {
else if(m->type == moEagle)
step *= 1.6;
else if(m->type == moHunterDog)
step *= 1.5;
step *= (1 + .5 / numplayers());
else if(m->type == moLancer)
step *= 1.25;
else if(isDemon(m->type)) {