Commit c7d9249 1 parent 2bf16e4 commit c7d9249 Copy full SHA for c7d9249
File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -3997,4 +3997,6 @@ The following changes to date are:
3997
3997
- Add escape spellbook descriptions to the in-game encyclopedia
3998
3998
- Fix: a few spellbook entries to the in-game encyclopedia could not
3999
3999
be accessed
4000
+ - Fix: Druid in wildshape form looting a monster that is wearing armor
4001
+ would show '(merged to your form)' for their worn armor
4000
4002
Original file line number Diff line number Diff line change @@ -1453,7 +1453,8 @@ unsigned doname_flags;
1453
1453
because donning() returns True for both cases */
1454
1454
: doffing (obj ) ? " (being doffed)"
1455
1455
: donning (obj ) ? " (being donned)"
1456
- : druid_form ? " (merged to your form)"
1456
+ : (druid_form && (owner == & youmonst ))
1457
+ ? " (merged to your form)"
1457
1458
: obj -> otyp == MUMMIFIED_HAND ? " "
1458
1459
: " (being worn)" );
1459
1460
/* slippery fingers is an intrinsic condition of the hero
You can’t perform that action at this time.
0 commit comments