1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 10:17:56 +00:00

yasc messages

This commit is contained in:
Zeno Rogue
2024-02-22 17:12:49 +01:00
parent a28c62416f
commit 285c71e10f
5 changed files with 172 additions and 60 deletions

View File

@@ -301,7 +301,7 @@ EX void add_fire(cell *c) {
return;
}
clear_bowpath();
checked_move_issue = miVALID;
checked_move_issue.type = miVALID;
pcmove pcm;
pcm.checkonly = false;
changes.init(false);
@@ -358,7 +358,7 @@ EX bool fire_on_mouse(cell *c) {
return false;
}
gen_bowpath_map();
checked_move_issue = miVALID;
checked_move_issue.type = miVALID;
pcmove pcm;
pcm.checkonly = false;
changes.init(false);
@@ -514,7 +514,7 @@ EX bool have_bow_target() {
int res = create_path();
if(res == -1) continue;
checked_move_issue = miVALID;
checked_move_issue.type = miVALID;
pcmove pcm;
pcm.checkonly = true;
changes.init(true);