blob: eef4bc07adb9cc6fb575927e69c8d9650222e04b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
*/
}
}
|