From 19481c26987bed0c90f0f3014bb117d343dc0a15 Mon Sep 17 00:00:00 2001 From: Petr Ilin Date: Sun, 1 Jan 2023 22:48:28 +0300 Subject: Happy new year --- .../java/net/elytrium/limboauth/command/ChangePasswordCommand.java | 2 +- .../java/net/elytrium/limboauth/command/DestroySessionCommand.java | 2 +- .../net/elytrium/limboauth/command/ForceChangePasswordCommand.java | 2 +- .../java/net/elytrium/limboauth/command/ForceUnregisterCommand.java | 2 +- src/main/java/net/elytrium/limboauth/command/LimboAuthCommand.java | 4 ++-- src/main/java/net/elytrium/limboauth/command/PremiumCommand.java | 2 +- src/main/java/net/elytrium/limboauth/command/TotpCommand.java | 2 +- src/main/java/net/elytrium/limboauth/command/UnregisterCommand.java | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/main/java/net/elytrium/limboauth/command') diff --git a/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java b/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java index 6c00e18..26c75eb 100644 --- a/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/ChangePasswordCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java b/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java index 95e002c..dc17104 100644 --- a/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/DestroySessionCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java b/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java index 1186856..899aff6 100644 --- a/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/ForceChangePasswordCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/main/java/net/elytrium/limboauth/command/ForceUnregisterCommand.java b/src/main/java/net/elytrium/limboauth/command/ForceUnregisterCommand.java index 72b11a9..3d2f9ed 100644 --- a/src/main/java/net/elytrium/limboauth/command/ForceUnregisterCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/ForceUnregisterCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/main/java/net/elytrium/limboauth/command/LimboAuthCommand.java b/src/main/java/net/elytrium/limboauth/command/LimboAuthCommand.java index 6d4a24c..669a978 100644 --- a/src/main/java/net/elytrium/limboauth/command/LimboAuthCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/LimboAuthCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -33,7 +33,7 @@ public class LimboAuthCommand implements SimpleCommand { private static final List HELP_MESSAGE = List.of( Component.text("This server is using LimboAuth and LimboAPI.", NamedTextColor.YELLOW), - Component.text("(C) 2021 - 2022 Elytrium", NamedTextColor.YELLOW), + Component.text("(C) 2021 - 2023 Elytrium", NamedTextColor.YELLOW), Component.text("https://elytrium.net/github/", NamedTextColor.GREEN), Component.empty() ); diff --git a/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java b/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java index 53cce89..9257adc 100644 --- a/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/PremiumCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/main/java/net/elytrium/limboauth/command/TotpCommand.java b/src/main/java/net/elytrium/limboauth/command/TotpCommand.java index 0ad71f5..e57cae9 100644 --- a/src/main/java/net/elytrium/limboauth/command/TotpCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/TotpCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/main/java/net/elytrium/limboauth/command/UnregisterCommand.java b/src/main/java/net/elytrium/limboauth/command/UnregisterCommand.java index b6c11ff..69edc8c 100644 --- a/src/main/java/net/elytrium/limboauth/command/UnregisterCommand.java +++ b/src/main/java/net/elytrium/limboauth/command/UnregisterCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2021 - 2022 Elytrium + * Copyright (C) 2021 - 2023 Elytrium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by -- cgit