Skip to content

Commit

Permalink
Fix: ais523 devteam monster name change wasn't complete
Browse files Browse the repository at this point in the history
The names are also hardcoded in sounds.c so they can say individualized
things, but when I changed the name in the des file, I didn't update it
here.
  • Loading branch information
copperwater committed Oct 28, 2024
1 parent 3fd1d70 commit c1371ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sounds.c
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ register struct monst *mtmp;
else if (!strcmpi(MNAME(mtmp), "patr")) {
chosenmsg = patrmsgs[rn2(SIZE(patrmsgs))];
}
else if (!strcmpi(MNAME(mtmp), "ais")) {
else if (!strcmpi(MNAME(mtmp), "ais523")) {
chosenmsg = aismsgs[rn2(SIZE(aismsgs))];
}
else if (!strcmpi(MNAME(mtmp), "lorimer")) {
Expand Down

0 comments on commit c1371ce

Please sign in to comment.