Skip to content

Commit

Permalink
Follow other messages files.
Browse files Browse the repository at this point in the history
  • Loading branch information
vLuckyyy committed Feb 16, 2025
1 parent 1fb059b commit 71b5dca
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
@Getter
@Accessors(fluent = true)
@Contextual
public class EnSeenMessages implements SeenMessages {
public class ENSeenMessages implements SeenMessages {

@Description("# {PLAYER} - The player who is never played before on the server")
public Notice neverPlayedBefore = Notice.chat("<dark_gray>[<dark_red>Seen<dark_gray>] <green>{PLAYER} has not played before on this server.");
public Notice neverPlayedBefore = Notice.chat("<green>{PLAYER} has not played before on this server.");

@Description("# {PLAYER} - The player who was last seen on the server, {SEEN} - Time since last login")
public Notice lastSeen = Notice.chat("<dark_gray>[<dark_red>Seen<dark_gray>] <green>{PLAYER} was last seen {SEEN} ago.");
public Notice lastSeen = Notice.chat("<green>{PLAYER} was last seen {SEEN} ago.");

@Description("# {PLAYER} - The player who is now online")
public Notice nowOnline = Notice.chat("<dark_gray>[<dark_red>Seen<dark_gray>] <green>{PLAYER} is now online!");
public Notice nowOnline = Notice.chat("<green>{PLAYER} is now online!");

}
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
public class PLSeenMessages implements SeenMessages {

@Description("# {PLAYER} - Gracz który nigdy nie grał na serwerze")
public Notice neverPlayedBefore = Notice.chat("<dark_gray>[<dark_red>Seen<dark_gray>] <green>{PLAYER} nie grał nigdy na tym serwerze.");
public Notice neverPlayedBefore = Notice.chat("<green>{PLAYER} nie grał nigdy na tym serwerze.");

@Description("# {PLAYER} - Gracz który ostatnio był widziany na serwerze, {SEEN} - Czas od ostatniego logowania")
public Notice lastSeen = Notice.chat("<dark_gray>[<dark_red>Seen<dark_gray>] <green>{PLAYER} był ostatnio widziany {SEEN} temu.");
public Notice lastSeen = Notice.chat("<green>{PLAYER} był ostatnio widziany {SEEN} temu.");

@Description("# {PLAYER} - Gracz który jest aktualnie online")
public Notice nowOnline = Notice.chat("<dark_gray>[<dark_red>Seen<dark_gray>] <green>{PLAYER} jest aktualnie online!");
public Notice nowOnline = Notice.chat("<green>{PLAYER} jest aktualnie online!");

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import com.eternalcode.core.feature.home.messages.ENHomeMessages;
import com.eternalcode.core.feature.jail.messages.ENJailMessages;
import com.eternalcode.core.feature.language.Language;
import com.eternalcode.core.feature.seen.messages.EnSeenMessages;
import com.eternalcode.core.feature.seen.messages.ENSeenMessages;
import com.eternalcode.core.feature.setslot.messages.ENSetSlotMessages;
import com.eternalcode.core.feature.privatechat.messages.ENPrivateMessages;
import com.eternalcode.core.feature.randomteleport.messages.ENRandomTeleportMessages;
Expand Down Expand Up @@ -136,7 +136,7 @@ public static class ENFormatSection implements Format {
" ",
"# This section is responsible for the messages of the /seen command"
})
public EnSeenMessages seen = new EnSeenMessages();
public ENSeenMessages seen = new ENSeenMessages();

@Description({
" ",
Expand Down

0 comments on commit 71b5dca

Please sign in to comment.