Skip to content

Commit

Permalink
fix(content): fix set_black_knight_aggro
Browse files Browse the repository at this point in the history
  • Loading branch information
KeepBotting committed Jan 8, 2025
1 parent a9ea9b5 commit 5474d29
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,14 @@ if (%blackknight_progress = 1) {
mes("I can't hear much right now.");
}

[proc,set_black_knight_aggro](coord $coord)(boolean)
[proc,set_black_knight_aggro](coord $coord)
npc_findallzone($coord);
while (npc_findnext = true) {
if (npc_type = black_knight_aggre) {
npc_say("Die intruder!");
npc_setmode(opplayer2);
}
}
return($has_spoken);

[proc,update_blackknight_progress]
%blackknight_progress = calc(%blackknight_progress + 1);
Expand Down

0 comments on commit 5474d29

Please sign in to comment.