more changes

This commit is contained in:
boy0001 2015-02-19 17:08:15 +11:00
parent f154754e1b
commit d227bcc739
27 changed files with 1151 additions and 351 deletions

View file

@ -0,0 +1,17 @@
package com.intellectualcrafters.plot.util;
import com.intellectualcrafters.plot.PlotMain;
import com.intellectualcrafters.plot.config.C;
public class MainUtil {
// TODO messages / permission stuff
/**
* Send a message to the console
*
* @param c message
*/
public static void sendConsoleSenderMessage(final C c) {
PlotMain.MAIN_IMP.sendConsoleSenderMessage(c.s());
}
}