-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AB-xxx] adding/updating documentation for core and experience module
updating asciidoctor plugin version adding check to not allow duplicate level action configurations limiting experience level up notification toggle command to be only available if the feature mode is enabled
- Loading branch information
Showing
8 changed files
with
175 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...in/java/dev/sheldan/abstracto/experience/exception/LevelActionAlreadyExistsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package dev.sheldan.abstracto.experience.exception; | ||
|
||
import dev.sheldan.abstracto.core.exception.AbstractoRunTimeException; | ||
import dev.sheldan.abstracto.core.templating.Templatable; | ||
|
||
public class LevelActionAlreadyExistsException extends AbstractoRunTimeException implements Templatable { | ||
|
||
public LevelActionAlreadyExistsException() { | ||
super("Level action already exists."); | ||
} | ||
|
||
@Override | ||
public String getTemplateName() { | ||
return "level_action_already_exists_exception"; | ||
} | ||
|
||
@Override | ||
public Object getTemplateModel() { | ||
return new Object(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.