diff --git a/src/cz/marwland/mc/essentials/features/ChatNotifier.java b/src/cz/marwland/mc/essentials/features/ChatNotifier.java new file mode 100644 index 0000000..23e3b76 --- /dev/null +++ b/src/cz/marwland/mc/essentials/features/ChatNotifier.java @@ -0,0 +1,12 @@ +package cz.marwland.mc.essentials.features; + +import cz.marwland.mc.core.MarwCore; +import cz.marwland.mc.core.features.Feature; + +public class ChatNotifier extends Feature { + + public ChatNotifier(MarwCore plugin) { + super(plugin, null); + } + +}