Strong Wind and Orb of Vaulting now better with Orb of the Sword

This commit is contained in:
Zeno Rogue
2024-10-12 10:40:27 +02:00
parent d90dcdcff5
commit 568389e629
5 changed files with 69 additions and 34 deletions
+10
View File
@@ -502,6 +502,16 @@ struct movei {
};
#endif
#if HDR
struct jumpdata {
eMonster dashmon;
cell *jumpthru;
bool uniq;
vector<movei> moves;
jumpdata() { dashmon = moNone; jumpthru = nullptr; uniq = false; }
};
#endif
EX movei moveimon(cell *c) { return movei(c, c->mondir); }
EX movei match(cell *f, cell *t) {