mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
parent
e816310da8
commit
5255ae846d
@ -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;
|
||||||
}}
|
}
|
||||||
|
}
|
||||||
|
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user