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

Void Beasts are now pulled by Orb of Air

This commit is contained in:
Zeno Rogue
2024-03-19 18:52:16 +01:00
parent 1c5709a3c9
commit 0e018df878
2 changed files with 14 additions and 6 deletions

View File

@@ -4930,9 +4930,10 @@ EX void drawMarkers() {
}
if(items[itOrbAir] && mouseover->cpdist > 1) {
cell *c1 = mouseover;
int dir = c1->monst == moVoidBeast ? -1 : 1;
for(int it=0; it<10; it++) {
int di;
auto mib = blowoff_destination(c1, di);
auto mib = blowoff_destination_dir(c1, di, dir);
if(!mib.proper()) break;
auto& c2 = mib.t;
shiftmatrix T1 = ggmatrix(c1);