forked from mirror/openmw-tes3mp
Another small enchanting fix
This commit is contained in:
parent
2179619721
commit
08e9bb0236
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include "creaturestats.hpp"
|
||||
#include "npcstats.hpp"
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
||||
namespace MWMechanics
|
||||
{
|
||||
|
@ -56,7 +57,7 @@ namespace MWMechanics
|
|||
enchantment.mData.mCharge = getGemCharge();
|
||||
|
||||
//Exception for Azura Star, it's not destroyed after enchanting
|
||||
if(mSoulGemPtr.get<ESM::Miscellaneous>()->mBase->mId=="Misc_SoulGem_Azura")
|
||||
if(boost::iequals(mSoulGemPtr.get<ESM::Miscellaneous>()->mBase->mId, "Misc_SoulGem_Azura"))
|
||||
mSoulGemPtr.getCellRef().mSoul="";
|
||||
else
|
||||
mSoulGemPtr.getRefData().setCount (mSoulGemPtr.getRefData().getCount()-1);
|
||||
|
|
Loading…
Reference in a new issue