Angband 4.2.0

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • Ingwe Ingweron
    replied
    Originally posted by Nick
    Just checking - it's not possible that there's a secret door at the left end right where the mapping cuts out, is it?
    Yep! That was it. Just a strange coincidence that the cut-off was perfect to make it appear disconnected.

    Leave a comment:


  • Nick
    replied
    Originally posted by Ingwe Ingweron
    Disconnected dungeon bug: @ descends stairs, maps, and finds is in an area of dungeon completely disconnected from the rest of the dungeon. Playing on angband.live, so waiting for Gwarl to get a savefile.
    Hm, I see, no vault. Savefile probably doesn't help here - the fault will be in generation, and there's no real trace of that left in the savefile.

    Just checking - it's not possible that there's a secret door at the left end right where the mapping cuts out, is it?

    Leave a comment:


  • Derakon
    replied
    Was there a vault involved? The game assumes vaults connect their edges.

    Leave a comment:


  • Ingwe Ingweron
    replied
    Disconnected dungeon bug: @ descends stairs, maps, and finds is in an area of dungeon completely disconnected from the rest of the dungeon. Playing on angband.live, so waiting for Gwarl to get a savefile.

    Leave a comment:


  • Oraticus
    replied
    Originally posted by Nick
    That's correct. Lightning strike can target any grid the player can see, but you need to pick an actual grid to hit. I'll see if I can make that a bit clearer.
    Ok, that makes more sense. I'll have to keep that in mind for the future. Thanks for the explanation.

    Leave a comment:


  • Ingwe Ingweron
    replied
    Originally posted by Nick
    ...will get to it. Eventually.
    Beleriand?

    Leave a comment:


  • Nick
    replied
    Originally posted by PowerWyrm
    Another bug in effect_handler_EARTHQUAKE() spotted while porting the struct loc refactoring (commit 7be84e3):

    old code:

    Code:
    y = py + ddy_ddd[i];
    x = px + ddx_ddd[i];
    if (map[16 + y - centre.y][16 + x - centre.x]) continue;
    new code:

    Code:
    struct loc grid = loc_sum(pgrid, ddgrid_ddd[i]);
    if (map[16 + y - centre.y][16 + x - centre.x]) continue;
    This leaves x and y uninitialized (in fact they should be equal to 32), breaking earthquakes.

    Fix: replace with grid.y and grid.x.
    Thanks, as usual

    For everyone else reporting stuff, I am reading this thread and will get to it. Eventually.

    Leave a comment:


  • Nick
    replied
    Originally posted by fph
    I think that the idea is that lightning strike comes "from the sky" (or the dungeon ceiling?) like an air strike, instead of travelling in a straight line from your hands. (I didn't check, but I'd be curious to see if you can target a tile you can't see behind a corner).
    That's correct. Lightning strike can target any grid the player can see, but you need to pick an actual grid to hit. I'll see if I can make that a bit clearer.

    Leave a comment:


  • fph
    replied
    I think that the idea is that lightning strike comes "from the sky" (or the dungeon ceiling?) like an air strike, instead of travelling in a straight line from your hands. (I didn't check, but I'd be curious to see if you can target a tile you can't see behind a corner).

    Leave a comment:


  • Oraticus
    replied
    Another annoying bug... it used to be that if you were casting spells, you could hit a direction and the spell would travel that direction, allowing you to blind-fire down a corridor if you knew enemies were on their way down. I tried it today with lightning strike, and when I hit "right", it just blew up at my feet. I was using the num pad, so I tried it with num lock both on and off, and I even tried it with the arrow keys. Just burst at my feet each time. Maybe other spells work (Raise earth works, but that's because it beams anyways)... maybe just ball spells? Anyone able to test, or seeing this same behavior?

    Leave a comment:


  • spara
    replied
    More random feedback. I like the way the new books have been named so that the school is obvious. It's also nice that the description of the book says if @ can read the book. I did not notice that at first though, since the the first necro book had nothing in the description and I assumed the others did not have anything either in their description. The most awesome thing would be, if all books had some kind of flavor text and would mention which classes can read the book.

    I understand that coming up with good flavor texts is much more work than one would assume, so at least adding notification about the classes that can read the book at some point would make the game a bit more approachable.

    Leave a comment:


  • PowerWyrm
    replied
    Another bug in effect_handler_EARTHQUAKE() spotted while porting the struct loc refactoring (commit 7be84e3):

    old code:

    Code:
    y = py + ddy_ddd[i];
    x = px + ddx_ddd[i];
    if (map[16 + y - centre.y][16 + x - centre.x]) continue;
    new code:

    Code:
    struct loc grid = loc_sum(pgrid, ddgrid_ddd[i]);
    if (map[16 + y - centre.y][16 + x - centre.x]) continue;
    This leaves x and y uninitialized (in fact they should be equal to 32), breaking earthquakes.

    Fix: replace with grid.y and grid.x.

    Leave a comment:


  • wobbly
    replied
    I can produce a version of this. Stand next to gold or an object that would normally be auto-picked up. Wizard mode in a monster to interrupt run. Walking onto the object will pick it up. Running onto it wont.

    Leave a comment:


  • gglibertine
    replied
    Originally posted by Pete Mack
    Is it repeatable? That is, if you try running by the coins in the same direction a second time, does it happen again? If so, a save file is possible.
    Nope, the second time @ successfully picks up the treasure. Quite a frustrating bug to nail down, this one. I'm keeping an eye out for any repeat behaviour.

    Leave a comment:


  • Pete Mack
    replied
    Is it repeatable? That is, if you try running by the coins in the same direction a second time, does it happen again? If so, a save file is possible.

    Leave a comment:

Working...
😀
😂
🥰
😘
🤢
😎
😞
😡
👍
👎