Fix for fury cutter
All checks were successful
Build / Build (push) Successful in 36s

This commit is contained in:
2026-05-25 18:04:33 +02:00
parent 445c6d879e
commit 8089a2ad94

View File

@@ -10,7 +10,10 @@ public class FuryCutter : Script, IScriptChangeBasePower
{
var userEffect = move.User.Volatile.Get<FuryCutterEffect>();
if (userEffect == null)
{
move.User.Volatile.Add(new FuryCutterEffect());
return;
}
if (userEffect.TurnCount < 5)
userEffect.TurnCount++;