1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-07-30 01:12:25 +01:00

Fix shifting weight on y'ha talla whip vs scimitar

This commit is contained in:
ChrisANG 2018-05-31 21:46:14 -04:00
parent b9f830ab68
commit bfd85131d5

View file

@ -1629,6 +1629,7 @@ register struct obj *obj;
else if(obj->oartifact == ART_SCEPTRE_OF_LOLTH) wt = 3*objects[MACE].oc_weight;
else if(obj->oartifact == ART_ROD_OF_THE_ELVISH_LORDS) wt = objects[ELVEN_MACE].oc_weight;
else if(obj->oartifact == ART_VAMPIRE_KILLER) wt = 2*objects[BULLWHIP].oc_weight;
else if(obj->oartifact == ART_GOLDEN_SWORD_OF_Y_HA_TALLA) wt = 2*objects[SCIMITAR].oc_weight;
else if(obj->oartifact == ART_EARTH_CRYSTAL){
wt = 160;
}