diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-11-28 18:19:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 18:19:55 +0100 |
commit | 4f7d5228a58005bc6866ae6b0ad090c4b69a8506 (patch) | |
tree | acc2a44ca839167671dc78e9f9f469c72d06bf8c /src/main/kotlin/io | |
parent | 2352b74bb9764eb0bfa96c786182a38e0967fa35 (diff) | |
download | NotEnoughUpdates-4f7d5228a58005bc6866ae6b0ad090c4b69a8506.tar.gz NotEnoughUpdates-4f7d5228a58005bc6866ae6b0ad090c4b69a8506.tar.bz2 NotEnoughUpdates-4f7d5228a58005bc6866ae6b0ad090c4b69a8506.zip |
Some misc changes (more in commit messages) (#957)
Diffstat (limited to 'src/main/kotlin/io')
-rw-r--r-- | src/main/kotlin/io/github/moulberry/notenoughupdates/commands/help/HelpCommand.kt | 2 | ||||
-rw-r--r-- | src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/WarpDessert.kt | 37 |
2 files changed, 38 insertions, 1 deletions
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/help/HelpCommand.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/help/HelpCommand.kt index 16ca0d1b..64575688 100644 --- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/help/HelpCommand.kt +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/help/HelpCommand.kt @@ -42,7 +42,7 @@ class HelpCommand { "§6/neuoverlay §r§7- Opens GUI Editor for quickcommands and searchbar.", "§6/neucalendar §r§7- Opens NEU's custom calendar GUI.", "§6/neucalc §r§7- Run calculations.", - "§6/join §r7- Join instance like k1/f1/m7/fe/kuudra inf", + "§6/join §r§7- Join instance like k1/f1/m7/fe/kuudra inf", "", "§6§lOld commands:", "§6/peek §b?{user} §r§7- Shows quick stats for a user.", diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/WarpDessert.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/WarpDessert.kt new file mode 100644 index 00000000..f6f272b9 --- /dev/null +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/WarpDessert.kt @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2023 NotEnoughUpdates contributors + * + * This file is part of NotEnoughUpdates. + * + * NotEnoughUpdates is free software: you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation, either + * version 3 of the License, or (at your option) any later version. + * + * NotEnoughUpdates is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>. + */ + +package io.github.moulberry.notenoughupdates.miscfeatures + +import io.github.moulberry.notenoughupdates.util.Utils +import net.minecraft.client.Minecraft +import net.minecraft.network.play.client.C01PacketChatMessage + +object WarpDessert { + @JvmStatic + fun onPacketChatMessage(packet: C01PacketChatMessage): Boolean { + val message = packet.message.lowercase() + if (message == "/warp dessert") { + Minecraft.getMinecraft().thePlayer.sendChatMessage("/warp desert") + Utils.addChatMessage("§eDid someone say §d§lDessert§e? Sand is yummy!") + return true + } + return false + } +} |