From 68dbdbcda0eaeaaab14edf04a0d101b036466ac8 Mon Sep 17 00:00:00 2001 From: Roman Zhuravlev Date: Wed, 3 Sep 2025 19:31:19 +0500 Subject: [PATCH] Add recursively loaded & unloaded message keys --- .../net/frankheijden/serverutils/common/config/MessageKey.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Common/src/main/java/net/frankheijden/serverutils/common/config/MessageKey.java b/Common/src/main/java/net/frankheijden/serverutils/common/config/MessageKey.java index c85f2df..db590c1 100644 --- a/Common/src/main/java/net/frankheijden/serverutils/common/config/MessageKey.java +++ b/Common/src/main/java/net/frankheijden/serverutils/common/config/MessageKey.java @@ -6,7 +6,9 @@ public enum MessageKey implements PlaceholderConfigKey { RELOAD("reload", false), LOADPLUGIN("loadplugin"), + LOADPLUGIN_RECURSIVELY("loadplugin-recursively"), UNLOADPLUGIN("unloadplugin"), + UNLOADPLUGIN_RECURSIVELY("unloadplugin-recursively"), SERVERUTILS_UPDATER("serverutils-updater", false), RELOADPLUGIN_SUCCESS("reloadplugin.success"), RELOADPLUGIN_SERVERUTILS("reloadplugin.serverutils"), @@ -27,6 +29,7 @@ public enum MessageKey implements PlaceholderConfigKey { DEPENDING_PLUGINS_SEPARATOR("depending-plugins.separator", false), DEPENDING_PLUGINS_LAST_SEPARATOR("depending-plugins.last-separator", false), DEPENDING_PLUGINS_OVERRIDE("depending-plugins.override"), + DEPENDING_PLUGINS_RECURSIVELY("depending-plugins.recursively"), WATCHPLUGIN_START("watchplugin.start"), WATCHPLUGIN_CHANGE("watchplugin.change", false), WATCHPLUGIN_STOPPED("watchplugin.stopped"),