From 5710c665da8d0293ddecd84ec567a8831d66c23d Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 3 Dec 2017 20:14:38 +0100 Subject: [PATCH] Hunting Dogs are now slower in coop Shmup --- shmup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shmup.cpp b/shmup.cpp index 0c1cda79..6a7de108 100644 --- a/shmup.cpp +++ b/shmup.cpp @@ -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)) {