monsters move slower in 3D

This commit is contained in:
? 2019-02-28 16:28:41 +01:00 committed by Zeno Rogue
parent 5871a4b208
commit 266b55eea2
1 changed files with 2 additions and 0 deletions

View File

@ -2755,6 +2755,8 @@ void moveMonster(monster *m, int delta) {
roseCurrents(nat, m, delta), carried = true;
step /= speedfactor();
if(DIM == 3) step /= 3;
int igo = 0;