From c5baef5e9caa056fc4de73055dd5be431bb4e939 Mon Sep 17 00:00:00 2001 From: catapillie Date: Fri, 29 Apr 2022 06:54:43 +0200 Subject: [PATCH] Remove bad debug value --- Code/Behavior/Shattering.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Behavior/Shattering.cs b/Code/Behavior/Shattering.cs index 47a957d..2692bfe 100644 --- a/Code/Behavior/Shattering.cs +++ b/Code/Behavior/Shattering.cs @@ -72,7 +72,7 @@ public static void OnShatter(this Strawberry strawberry) { level.Particles.Emit(explodeParticle, position, num); } - int amount = 1; + int amount = ShatteringStrawberriesModule.Settings.Shards.Amount(); if (amount > 0) { color *= 0.75f; Vector2 from = Calc.Floor(strawberry.Position);