[FEAT] Customizable death messages

This commit is contained in:
2023-08-06 03:02:56 +02:00
parent 3a405a5ba4
commit 3a49f97154
2 changed files with 5 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ public class SDLinkConfig extends ModuleConfig {
// DO NOT REMOVE TRANSIENT HERE... OTHERWISE, THE STUPID CONFIG LIBRARY // DO NOT REMOVE TRANSIENT HERE... OTHERWISE, THE STUPID CONFIG LIBRARY
// WILL TRY TO WRITE THESE TO THE CONFIG // WILL TRY TO WRITE THESE TO THE CONFIG
public transient static SDLinkConfig INSTANCE; public transient static SDLinkConfig INSTANCE;
public transient static int configVer = 7; public transient static int configVer = 8;
@Path("general") @Path("general")
@SpecComment("General Mod Config") @SpecComment("General Mod Config")

View File

@@ -49,6 +49,10 @@ public class MessageFormatting {
@SpecComment("Chat Messages. THIS DOES NOT APPLY TO EMBED OR WEBHOOK MESSAGES. Available variables: %player%, %message%") @SpecComment("Chat Messages. THIS DOES NOT APPLY TO EMBED OR WEBHOOK MESSAGES. Available variables: %player%, %message%")
public String chat = "%player%: %message%"; public String chat = "%player%: %message%";
@Path("death")
@SpecComment("Death Messages. Available variables: %player%, %message%")
public String death = "%player% %message%";
@Path("commands") @Path("commands")
@SpecComment("Command Messages. Available variables: %player%, %command%") @SpecComment("Command Messages. Available variables: %player%, %command%")
public String commands = "%player% **executed command**: *%command%*"; public String commands = "%player% **executed command**: *%command%*";