Skip to content

Commit 9d01ca6

Browse files
committed
📝 Fixs
1 parent 64dc8d2 commit 9d01ca6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

API/src/main/java/fr/maxlego08/essentials/api/messages/Message.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,8 @@ public enum Message {
942942
COMMAND_PUB(MessageType.WITHOUT_PREFIX, "&8[&fPUB&8] <white>%player%<dark_gray>: <red>%message%"),
943943
STEP_DOESNT_EXIST("<error>Step &f%step% <error>does not exist."),
944944
STEP_ALREADY_EXIST("<error>Step &f%step% <error>already started."),
945-
STEP_DOESNT_STARTED("<error>Step &f%step% <error>doesn't started."),;
945+
STEP_DOESNT_STARTED("<error>Step &f%step% <error>doesn't started."),
946+
;
946947

947948
private EssentialsPlugin plugin;
948949
private List<EssentialsMessage> messages = new ArrayList<>();

API/src/main/java/fr/maxlego08/essentials/api/messages/messages/ClassicMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static EssentialsMessage tchat(String... strings) {
1414
}
1515

1616
public static EssentialsMessage action(String strings) {
17-
return new ClassicMessage(MessageType.TCHAT, Collections.singletonList(strings));
17+
return new ClassicMessage(MessageType.ACTION, Collections.singletonList(strings));
1818
}
1919

2020
}

0 commit comments

Comments
 (0)