In at least the last two experimental builds (3.5-a7aadf4 and 3.5-1b93088) targeting mode appears broken when attempting to target a floor location rather than monster. After entering floor targeting mode and attempting to target the space just around a corner, whenever targeting is hit ('t' or '5) the result is "Target Aborted". Am I missing a change in the commands regarding floor targeting?
Broken Targeting Mode
Collapse
X
-
Broken Targeting Mode
“We're more of the love, blood, and rhetoric school. Well, we can do you blood and love without the rhetoric, and we can do you blood and rhetoric without the love, and we can do you all three concurrent or consecutive. But we can't give you love and rhetoric without the blood. Blood is compulsory. They're all blood, you see.”
― Tom Stoppard, Rosencrantz and Guildenstern are DeadTags: None -
In at least the last two experimental builds (3.5-a7aadf4 and 3.5-1b93088) targeting mode appears broken when attempting to target a floor location rather than monster. After entering floor targeting mode and attempting to target the space just around a corner, whenever targeting is hit ('t' or '5) the result is "Target Aborted". Am I missing a change in the commands regarding floor targeting?takkaria whispers something about options. -more- -
The fix for #332 (commit 41c7461f6b40c472bfd2a2db6e1fcff87999834e) is calling target_set_monster() which clears the target if the monster is not targetable. It should probably do something more like:
Code:/* Legal target */ if (cave_in_bounds_fully(cave, y, x)) { struct monster *m; /* Save target info */ target_set = TRUE; target_who = NULL; target_y = y; target_x = x; /* If there's a monster there, target that instead */ m = cave_monster_at(cave, y, x); if (m && target_able(m)) target_who = m; } /* Clear target */ else { /* Reset target info */ target_set = FALSE; target_who = 0; target_y = 0; target_x = 0; }
PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!Comment
-
In at least the last two experimental builds (3.5-a7aadf4 and 3.5-1b93088) targeting mode appears broken when attempting to target a floor location rather than monster. After entering floor targeting mode and attempting to target the space just around a corner, whenever targeting is hit ('t' or '5) the result is "Target Aborted". Am I missing a change in the commands regarding floor targeting?PWMAngband variant maintainer - check https://github.com/draconisPW/PWMAngband (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant!Comment
-
Is the new inability to target the monster that's just around the corner intentional? A change to address line-of-sight issues? If so, is it symmetrical, so that monsters cannot target @ when the LOS is reversed? I always considered the ability to lob a spell around a corner in some situations an adequate recompense for the fact that monsters can launch breath and spell attacks while still in walls where they were unassailable by such attacks (not to mention that they could lob spells around corners in reverse situations).“We're more of the love, blood, and rhetoric school. Well, we can do you blood and love without the rhetoric, and we can do you blood and rhetoric without the love, and we can do you all three concurrent or consecutive. But we can't give you love and rhetoric without the blood. Blood is compulsory. They're all blood, you see.”
― Tom Stoppard, Rosencrantz and Guildenstern are DeadComment
-
It's probably a side-effect for a bug that Takkaria cleared that personally I don't consider to be a bug, but oh well. The bug was that if you select a floor tile that a monster is on (i.e. using the "absolute" targeting system instead of the "snap-to-monster" targeting system), then the target is not cleared when the monster dies.Comment
-
Is the new inability to target the monster that's just around the corner intentional? A change to address line-of-sight issues? If so, is it symmetrical, so that monsters cannot target @ when the LOS is reversed? I always considered the ability to lob a spell around a corner in some situations an adequate recompense for the fact that monsters can launch breath and spell attacks while still in walls where they were unassailable by such attacks (not to mention that they could lob spells around corners in reverse situations).takkaria whispers something about options. -more-Comment
Comment