Skip to content

Commit

Permalink
Giant mplayers can get large robes.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Oct 6, 2023
1 parent dee553b commit 6cde613
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/mplayer.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,12 @@ struct obj *obj;
if (ascending) {
if (!rn2(10))
(void) mongets(mtmp, rn2(3) ? LUCKSTONE : LOADSTONE);
if (!racial_giant(mtmp)) {
if (racial_giant(mtmp)) {
if (is_spellcaster(mtmp))
mk_mplayer_armor(mtmp, LARGE_ROBE);
else
mk_mplayer_armor(mtmp, MUMMY_WRAPPING);
} else {
mk_mplayer_armor(mtmp, armor);
mk_mplayer_armor(mtmp, cloak);
}
Expand Down

0 comments on commit 6cde613

Please sign in to comment.