diff --git a/Adventures in Lestoria/BurstBullet.cpp b/Adventures in Lestoria/BurstBullet.cpp index d336ba78..a6b06f75 100644 --- a/Adventures in Lestoria/BurstBullet.cpp +++ b/Adventures in Lestoria/BurstBullet.cpp @@ -63,7 +63,7 @@ void BurstBullet::Explode(){ } } SoundEffect::PlaySFX("Burst Bullet Explode",pos); - for(int i:std::ranges::iota_view(0,extraBulletCount)){ + for(int i:std::ranges::iota_view(0,extraBulletCount+1)){ const float angle{(360.f/extraBulletCount)*i}; const vf2d newPos{pos+vf2d{radius/2.f,angle}.cart()}; CreateBullet(RotateBullet)(newPos,angle,extraBulletStartSpeed,extraBulletAcc,extraBulletHeadingAngleChange,extraBulletRadius,damage,OnUpperLevel(),friendly,WHITE)EndBullet; diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index f47dcc7b..bf544a1d 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -39,7 +39,7 @@ All rights reserved. #define VERSION_MAJOR 1 #define VERSION_MINOR 3 #define VERSION_PATCH 0 -#define VERSION_BUILD 11895 +#define VERSION_BUILD 11896 #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 b51f53ee..fe9cfc76 100644 --- a/Adventures in Lestoria/assets/config/MonsterStrategies.txt +++ b/Adventures in Lestoria/assets/config/MonsterStrategies.txt @@ -1262,13 +1262,13 @@ MonsterStrategy # Number of shots when a big bullet comes out instead. Big Bullet Frequency = 6shots Big Bullet Speed = 250 - Big Bullet Radius = 18px + Big Bullet Radius = 8px Big Bullet Detection Radius = 200 Big Bullet Damage = 90 # xscale, yscale Big Bullet Image Scale = 2,2 Big Bullet Extra Bullet Count = 10 - Big Bullet Extra Bullet Radius = 8px + Big Bullet Extra Bullet Radius = 5px Big Bullet Extra Bullet Rotate Speed = 40deg/sec Big Bullet Extra Bullet Image Scale = 1,1 Big Bullet Extra Bullet Speed = 120 diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index e31bf3c3..5093ea11 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ