mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-08-08 21:55:25 +01:00
Fix rogues generating with a stack of spears replacing their daggers
and instead start with only one.
This commit is contained in:
parent
77975c4d11
commit
a51f18b182
1 changed files with 3 additions and 2 deletions
|
@ -2918,8 +2918,9 @@ register struct trobj *trop;
|
|||
}
|
||||
if (obj->oclass == WEAPON_CLASS ||
|
||||
obj->oclass == TOOL_CLASS) {
|
||||
obj->quan = (long) trop->trquan;
|
||||
trop->trquan = 1;
|
||||
if(objects[obj->otyp].oc_merge)
|
||||
obj->quan = (long) trop->trquan;
|
||||
trop->trquan = 1;
|
||||
} else if (obj->oclass == GEM_CLASS &&
|
||||
((is_graystone(obj) && obj->otyp != FLINT) ||
|
||||
Role_if(PM_EXILE) )) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue