This commit is contained in:
TheBusyBiscuit 2021-07-02 01:11:22 +02:00 committed by GitHub
parent e816310da8
commit 5255ae846d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 5 deletions

View File

@ -1,5 +1,7 @@
package com.gmail.nossr50.datatypes.interactions; package com.gmail.nossr50.datatypes.interactions;
import org.jetbrains.annotations.NotNull;
/** /**
* This class helps define the types of information interactions we will have with players * This class helps define the types of information interactions we will have with players
*/ */
@ -23,14 +25,14 @@ public enum NotificationType {
CHAT_ONLY("ChatOnly"), CHAT_ONLY("ChatOnly"),
PARTY_MESSAGE("PartyMessage"); PARTY_MESSAGE("PartyMessage");
final String niceName; private final String niceName;
NotificationType(String niceName) NotificationType(@NotNull String niceName) {
{
this.niceName = niceName; this.niceName = niceName;
} }
@Override @Override
public String toString() { public @NotNull String toString() {
return niceName; return niceName;
}} }
}

View File

@ -78,6 +78,9 @@ Feedback:
PartyMessage: PartyMessage:
Enabled: true Enabled: true
SendCopyOfMessageToChat: true SendCopyOfMessageToChat: true
AbilityRefreshed:
Enabled: true
SendCopyOfMessageToChat: false
Skills: Skills:
General: General:
LimitBreak: LimitBreak: