Commit 2f7ec79 1 parent ef579bc commit 2f7ec79 Copy full SHA for 2f7ec79
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3356,4 +3356,6 @@ The following changes to date are:
3356
3356
the Crossbow of Carl
3357
3357
- Fix: object property from wearing a t-shirt persisted if the t-shirt was
3358
3358
destoryed or fell off when polymorphing
3359
+ - Fix: incorrect feedback when attempting to steal from a monster and
3360
+ the objects being stolen have the oilskin object property
3359
3361
Original file line number Diff line number Diff line change @@ -2467,7 +2467,7 @@ struct attack *mattk;
2467
2467
otmp -> greased ? "greased" : "slippery" ,
2468
2468
(otmp -> greased || objects [otmp -> otyp ].oc_name_known )
2469
2469
? xname (otmp )
2470
- : cloak_simple_name (otmp ));
2470
+ : simpleonames (otmp ));
2471
2471
2472
2472
if (otmp -> greased && !rn2 (2 )) {
2473
2473
pline_The ("grease wears off." );
@@ -2655,7 +2655,7 @@ struct attack *mattk;
2655
2655
mhis (mdef ));
2656
2656
2657
2657
/* only triggered if (stealoid && items have already been stolen).
2658
- failing to steal a greased object will stop you from stealing
2658
+ failing to steal a greased object will stop you from stealing
2659
2659
anything else to avoid infinite loop nastiness */
2660
2660
if (otmp && (otmp -> greased || otmp -> otyp == OILSKIN_CLOAK
2661
2661
|| otmp -> otyp == OILSKIN_SACK
@@ -2668,7 +2668,7 @@ struct attack *mattk;
2668
2668
otmp -> greased ? "greased" : "slippery" ,
2669
2669
(otmp -> greased || objects [otmp -> otyp ].oc_name_known )
2670
2670
? xname (otmp )
2671
- : cloak_simple_name (otmp ));
2671
+ : simpleonames (otmp ));
2672
2672
2673
2673
if (otmp -> greased && !rn2 (2 )) {
2674
2674
pline_The ("grease wears off." );
You can’t perform that action at this time.
0 commit comments