diff --git a/Adventures in Lestoria/Ursule.cpp b/Adventures in Lestoria/Ursule.cpp index 26233cd8..6aa1dd25 100644 --- a/Adventures in Lestoria/Ursule.cpp +++ b/Adventures in Lestoria/Ursule.cpp @@ -323,6 +323,7 @@ void Monster::STRATEGY::URSULE(Monster&m,float fElapsedTime,std::string strategy m.F(A::TARGET_TIMER)=ConfigFloat("Phase 3.Charge Max Run Time"); m.F(A::CHARGE_COOLDOWN)=ConfigFloat("Phase 3.Charge Attack Cooldown"); m.PerformOtherAnimation(3); + m.UpdateFacingDirection(m.target); } break; } diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index 3f301300..72a2f886 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -38,8 +38,8 @@ All rights reserved. #pragma once #define VERSION_MAJOR 1 #define VERSION_MINOR 2 -#define VERSION_PATCH 2 -#define VERSION_BUILD 8957 +#define VERSION_PATCH 3 +#define VERSION_BUILD 9417 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/Adventures in Lestoria/assets/config/MonsterStrategies.txt b/Adventures in Lestoria/assets/config/MonsterStrategies.txt index 2e5f53b4..6634a585 100644 --- a/Adventures in Lestoria/assets/config/MonsterStrategies.txt +++ b/Adventures in Lestoria/assets/config/MonsterStrategies.txt @@ -458,7 +458,7 @@ MonsterStrategy Charge Attack Damage = 30 # Amount of knockback to cause to the player when hit by the charging attack. - Charge Attack Knockback Strength = 3.5 + Charge Attack Knockback Strength = 2.0 # Number of stomps to perform before doing a run towards the player. Stomp Count = 3 diff --git a/Adventures in Lestoria/assets/config/Monsters.txt b/Adventures in Lestoria/assets/config/Monsters.txt index e995a982..ddd2dbea 100644 --- a/Adventures in Lestoria/assets/config/Monsters.txt +++ b/Adventures in Lestoria/assets/config/Monsters.txt @@ -349,6 +349,9 @@ Monsters XP = 200 + # A flag to show an arrow indicator when the boss is off-screen. + ShowBossIndicator = True + Strategy = Ursule # vvvvv Bear script overrides vvvvv diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index 49e1b7c7..f63577b9 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ