1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-18 07:27:40 +00:00

racing:: more arrangements

This commit is contained in:
Zeno Rogue
2018-11-24 01:30:05 +01:00
parent 410c05554c
commit bf23d42e4c
4 changed files with 58 additions and 12 deletions

View File

@@ -1636,7 +1636,6 @@ void movePlayer(monster *m, int delta) {
if(m->vel * mgo < 0) mgo *= 3;
m->vel += mgo * delta / 600;
playergo[cpid] = m->vel * SCALE * delta / 600;
printf("vel = %lf go = %lf\n", m->vel, playergo[cpid]);
}
else {