9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-30 12:29:16 +00:00

fix: sound debug was wrong level

This commit is contained in:
LoJoSho
2023-03-09 19:08:21 -06:00
parent d0092a2ffe
commit 135fdc94d4

View File

@@ -29,7 +29,7 @@ public class ActionSound extends Action {
pitch = Float.parseFloat(processedString[2]);
}
MessagesUtil.sendDebugMessages("Attempting to play " + soundName, Level.WARNING);
MessagesUtil.sendDebugMessages("Attempting to play " + soundName, Level.INFO);
player.playSound(player.getLocation(), soundName, volume, pitch);
}