From f11ffd2b91dcb4e32d20aaf88bb877742a00e94a Mon Sep 17 00:00:00 2001 From: Zoom L1 <46046453+AgaSpace@users.noreply.github.com> Date: Sat, 27 Nov 2021 09:30:52 +0700 Subject: [PATCH] Fixed the maximum and minimum values. Co-authored-by: Arthri <41360489+Arthri@users.noreply.github.com> --- TShockAPI/Bouncer.cs | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 8d1c9d93..980f2ebf 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -2524,32 +2524,32 @@ namespace TShockAPI }; private Dictionary Projectile_MinValuesAI2 = new Dictionary { - { 405, 0 }, - { 410, 0 }, + { 405, 0.8f }, + { 410, 0.6f }, - { 424, 0 }, - { 425, 0 }, - { 426, 0 }, + { 424, 0.5f }, + { 425, 0.5f }, + { 426, 0.5f }, - { 612, 0 }, - { 953, 0 }, + { 612, 0.4f }, + { 953, 0.85f }, - { 756, 0 }, + { 756, 0.5f }, { 522, 0 } }; private Dictionary Projectile_MaxValuesAI2 = new Dictionary { - { 405, 2 }, - { 410, 2 }, + { 405, 1.2f }, + { 410, 1.2f }, - { 424, 1 }, - { 425, 1 }, - { 426, 1 }, + { 424, 0.8f }, + { 425, 0.8f }, + { 426, 0.8f }, - { 612, 2 }, + { 612, 0.7f }, { 953, 2 }, { 756, 1 }, - { 522, 0 } + { 522, 40f } }; } }