mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2025-01-10 10:17:41 +01:00
Merge branch 'MV5' into zax71/MV5/whoCommand
This commit is contained in:
commit
7b20cd6443
@ -0,0 +1,37 @@
|
|||||||
|
package org.mvplugins.multiverse.core.commands;
|
||||||
|
|
||||||
|
import co.aikar.commands.BukkitCommandIssuer;
|
||||||
|
import co.aikar.commands.MessageType;
|
||||||
|
import co.aikar.commands.annotation.CommandAlias;
|
||||||
|
import co.aikar.commands.annotation.CommandPermission;
|
||||||
|
import co.aikar.commands.annotation.Description;
|
||||||
|
import co.aikar.commands.annotation.Subcommand;
|
||||||
|
import jakarta.inject.Inject;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jvnet.hk2.annotations.Service;
|
||||||
|
import org.mvplugins.multiverse.core.MultiverseCore;
|
||||||
|
import org.mvplugins.multiverse.core.commandtools.MVCommandManager;
|
||||||
|
import org.mvplugins.multiverse.core.commandtools.MultiverseCommand;
|
||||||
|
import org.mvplugins.multiverse.core.utils.MVCorei18n;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@CommandAlias("mv")
|
||||||
|
class VersionCommand extends MultiverseCommand {
|
||||||
|
|
||||||
|
private final MultiverseCore plugin;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
VersionCommand(@NotNull MVCommandManager commandManager, MultiverseCore plugin) {
|
||||||
|
super(commandManager);
|
||||||
|
this.plugin = plugin;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Subcommand("version")
|
||||||
|
@CommandPermission("multiverse.core.version")
|
||||||
|
@Description("{@@mv-core.version.description}")
|
||||||
|
void versionCommand(BukkitCommandIssuer issuer) {
|
||||||
|
issuer.sendMessage(MessageType.INFO, MVCorei18n.VERSION_MV, "{version}", plugin.getDescription().getVersion());
|
||||||
|
issuer.sendMessage(MessageType.INFO, MVCorei18n.VERSION_AUTHORS, "{authors}", String.join(", ", plugin.getDescription().getAuthors()));
|
||||||
|
issuer.sendMessage(MessageType.INFO, MVCorei18n.VERSION_SECRETCODE); // An in joke I don't get...
|
||||||
|
}
|
||||||
|
}
|
@ -108,6 +108,10 @@ public enum MVCorei18n implements MessageKeyProvider {
|
|||||||
WHO_FLAGS_DESCRIPTION,
|
WHO_FLAGS_DESCRIPTION,
|
||||||
WHO_EMPTY,
|
WHO_EMPTY,
|
||||||
|
|
||||||
|
// version command
|
||||||
|
VERSION_MV,
|
||||||
|
VERSION_AUTHORS,
|
||||||
|
VERSION_SECRETCODE,
|
||||||
|
|
||||||
// debug command
|
// debug command
|
||||||
DEBUG_INFO_OFF,
|
DEBUG_INFO_OFF,
|
||||||
|
@ -147,6 +147,12 @@ mv-core.who.world.description=Name of the world you want to list players in
|
|||||||
mv-core.who.flags.description=Filter - only shows entries matching this. Page - the page to show
|
mv-core.who.flags.description=Filter - only shows entries matching this. Page - the page to show
|
||||||
mv-core.who.empty=&rEmpty
|
mv-core.who.empty=&rEmpty
|
||||||
|
|
||||||
|
# /mv version
|
||||||
|
mv-core.version.description=Displays version and authors
|
||||||
|
mv-core.version.mv=Multiverse Core Version &fv{version}
|
||||||
|
mv-core.version.authors=Multiverse Core Authors &f{authors}
|
||||||
|
mv-core.version.secretcode=Special Code: &fFRN002
|
||||||
|
|
||||||
# commands error
|
# commands error
|
||||||
mv-core.commands.error.playersonly=&cThis command can only be used by players
|
mv-core.commands.error.playersonly=&cThis command can only be used by players
|
||||||
mv-core.commands.error.multiverseworldonly=&cThis can only be used in multiverse worlds
|
mv-core.commands.error.multiverseworldonly=&cThis can only be used in multiverse worlds
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: Multiverse-Core
|
name: Multiverse-Core
|
||||||
main: org.mvplugins.multiverse.core.MultiverseCore
|
main: org.mvplugins.multiverse.core.MultiverseCore
|
||||||
authors: ['dumptruckman', 'Rigby', 'fernferret', 'lithium3141', 'main--']
|
authors: ['dumptruckman', 'Rigby', 'fernferret', 'lithium3141', 'main--', 'benwoo1110', 'Zax71']
|
||||||
website: 'https://dev.bukkit.org/projects/multiverse-core'
|
website: 'https://dev.bukkit.org/projects/multiverse-core'
|
||||||
softdepend: ['Vault', 'PlaceholderAPI']
|
softdepend: ['Vault', 'PlaceholderAPI']
|
||||||
api-version: 1.13
|
api-version: 1.13
|
||||||
|
Loading…
Reference in New Issue
Block a user