This commit is contained in:
SoulliesOfficial
2026-04-29 06:16:07 -04:00
parent 0902ca8a9e
commit 8ad26129b2
3859 changed files with 2279 additions and 857010 deletions

View File

@@ -2,7 +2,6 @@ using System;
using System.Collections.Generic;
using System.Linq;
using Cielonos.MainGame.Characters.Inventory;
using MoreMountains.FeedbacksForThirdParty;
using Sirenix.OdinInspector;
using SLSUtilities.General;
using UnityEngine;
@@ -157,7 +156,7 @@ namespace Cielonos.MainGame.Characters
if (sourceItem == null)
{
sourceCharacter?.feedbackSc["PerfectDodge"]?.Play();
sourceCharacter?.feedbackSc.PlayFeedback("PerfectDodge");
Debug.Log("Perfect Dodge!");
}
}
@@ -168,7 +167,7 @@ namespace Cielonos.MainGame.Characters
if (sourceItem == null)
{
sourceCharacter?.feedbackSc["NormalDodge"]?.Play();
sourceCharacter?.feedbackSc.PlayFeedback("NormalDodge");
}
}
}