diff --git a/plugins/fancynpcs/VERSION b/plugins/fancynpcs/VERSION index 02d001eb..90cba77f 100644 --- a/plugins/fancynpcs/VERSION +++ b/plugins/fancynpcs/VERSION @@ -1 +1 @@ -2.7.0.286 \ No newline at end of file +2.7.0.287 \ No newline at end of file diff --git a/plugins/fancynpcs/src/main/java/de/oliver/fancynpcs/commands/npc/TurnToPlayerCMD.java b/plugins/fancynpcs/src/main/java/de/oliver/fancynpcs/commands/npc/TurnToPlayerCMD.java index 43470669..c2bb4408 100644 --- a/plugins/fancynpcs/src/main/java/de/oliver/fancynpcs/commands/npc/TurnToPlayerCMD.java +++ b/plugins/fancynpcs/src/main/java/de/oliver/fancynpcs/commands/npc/TurnToPlayerCMD.java @@ -34,7 +34,7 @@ public enum TurnToPlayerCMD { } else if (state == null) { // If no state provided, just display current state boolean currentState = npc.getData().isTurnToPlayer(); - translator.translate(currentState ? "npc_turn_to_player_status_true" : "npc_turn_to_player_status_false") + translator.translate(currentState ? "npc_turn_to_player_set_true" : "npc_turn_to_player_set_false") .replace("npc", npc.getData().getName()) .send(sender); }