diff options
Diffstat (limited to 'src/me/fatpigsarefat/quests/title/Title_Other.java')
| -rw-r--r-- | src/me/fatpigsarefat/quests/title/Title_Other.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/me/fatpigsarefat/quests/title/Title_Other.java b/src/me/fatpigsarefat/quests/title/Title_Other.java new file mode 100644 index 00000000..eef4bc07 --- /dev/null +++ b/src/me/fatpigsarefat/quests/title/Title_Other.java @@ -0,0 +1,19 @@ +package me.fatpigsarefat.quests.title; + +import org.bukkit.entity.Player; + +public class Title_Other implements Title { + + @Override + public void sendTitle(Player player, String message, String submessage) { + /* + I'm too lazy to do a null check each time I want to send a title, so here. + Anyway, hello there programmer! I see you're rummaging through my source code. + Try not to leave a mess please. If you see anything dodgy or looks like it + could do with a little improvement make a pull request. + Also join my discord: https://discord.gg/8amrJnX + Have a great day! + - fatpigsarefat + */ + } +} |
