Revert "always combine_things() after identifying a held item"
This reverts commit 364712ef9e
.
This commit is contained in:
@@ -599,11 +599,9 @@ void do_mage_spell(short pc_num,eSpell spell_num,bool freebie) {
|
|||||||
if(all_identified){
|
if(all_identified){
|
||||||
sstr << "already ";
|
sstr << "already ";
|
||||||
}else{
|
}else{
|
||||||
for(cPlayer& pc : univ.party){
|
for(cPlayer& pc : univ.party)
|
||||||
for(cItem& item : pc.items)
|
for(cItem& item : pc.items)
|
||||||
item.ident = true;
|
item.ident = true;
|
||||||
pc.combine_things();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
sstr << "identified.";
|
sstr << "identified.";
|
||||||
ASB(sstr.str());
|
ASB(sstr.str());
|
||||||
|
@@ -77,7 +77,6 @@ bool handle_action(const sf::Event & event) {
|
|||||||
univ.party[current_active_pc].items[i].variety != eItemType::NO_ITEM) {
|
univ.party[current_active_pc].items[i].variety != eItemType::NO_ITEM) {
|
||||||
flash_rect(item_string_rects[i][2]);
|
flash_rect(item_string_rects[i][2]);
|
||||||
univ.party[current_active_pc].items[i].ident = true;
|
univ.party[current_active_pc].items[i].ident = true;
|
||||||
univ.party[current_active_pc].combine_things();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user