Skip to content

Commit

Permalink
Fix animation trigger incorrectly registered
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Oct 21, 2023
1 parent 33dce91 commit 8f6e65c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static Prompt getTriggerPromptFrom(String input) {

static {
addTrigger("animation", AnimationTrigger.class, AnimationTriggerPrompt.class);
addTrigger("command", AnimationTrigger.class, CommandTriggerPrompt.class);
addTrigger("command", CommandTrigger.class, CommandTriggerPrompt.class);
addTrigger("chat", ChatTrigger.class, ChatTriggerPrompt.class);
addTrigger("delay", DelayTrigger.class, DelayTriggerPrompt.class);
addTrigger("teleport", TeleportTrigger.class, TeleportTriggerPrompt.class);
Expand Down

0 comments on commit 8f6e65c

Please sign in to comment.