Skip to content

Commit

Permalink
Fix: Tortles were not truly able to wear robes - now they can.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Oct 14, 2023
1 parent f7428ac commit e121e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/do_wear.c
Original file line number Diff line number Diff line change
Expand Up @@ -2692,7 +2692,7 @@ boolean noisy;
&& otmp->otyp != MUMMY_WRAPPING /* Exception for giants and tortles */
&& !Is_dragon_scales(otmp) /* Exception for giants and tortles */
&& (racial_exception(&youmonst, otmp) < 1)
&& !(Race_if(PM_TORTLE) && otmp && (otmp->otyp != ROBE))
&& !(Race_if(PM_TORTLE) && otmp && otmp->otyp == ROBE)
&& !(Race_if(PM_GIANT) && otmp && giant_sized(otmp))) {
if (noisy)
pline_The("%s will not fit on your body.", which);
Expand Down

0 comments on commit e121e00

Please sign in to comment.