1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 00:17:39 +00:00

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

View File

@@ -2756,6 +2756,8 @@ void moveMonster(monster *m, int delta) {
step /= speedfactor();
if(DIM == 3) step /= 3;
int igo = 0;
transmatrix nat0 = nat;