diff --git a/Adventures in Lestoria/Item.cpp b/Adventures in Lestoria/Item.cpp index b108a486..f5d71386 100644 --- a/Adventures in Lestoria/Item.cpp +++ b/Adventures in Lestoria/Item.cpp @@ -928,6 +928,8 @@ void Item::EnhanceItem(uint8_t qty){ game->GetPlayer()->SetMoney(game->GetPlayer()->GetMoney()-consumedResources.GetCost()); SoundEffect::PlaySFX("Enhance Item",SoundEffect::CENTERED); + + game->GetPlayer()->RecalculateEquipStats(); }else{ //This is a craftable, so we have to give the player the item they crafted. Inventory::AddItem(ActualName()); diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index 9d4fca92..c0f12347 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -39,7 +39,7 @@ All rights reserved. #define VERSION_MAJOR 0 #define VERSION_MINOR 4 #define VERSION_PATCH 4 -#define VERSION_BUILD 7897 +#define VERSION_BUILD 7898 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index c31684af..54f36a5c 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ