Deleting PluginlessConfig. I can just do this in my own subclass.

This commit is contained in:
Evan 2013-07-25 12:20:21 -05:00
parent 506def5e20
commit b144fcab4f
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
package com.wimbli.WorldBorder;
import org.bukkit.plugin.java.JavaPlugin;
public class PluginlessConfig extends Config {
public static void load(JavaPlugin master, boolean logIt)
{ // load config from file
plugin = master;
LogConfig("Using " + (ShapeName()) + " border, knockback of " + knockBack + " blocks, and timer delay of " + timerTicks + ".");
if (message == null || message.isEmpty())
{ // store defaults
message = "You have reached the edge of this world.";
}
StartBorderTimer();
}
public static void save(boolean logIt, boolean storeFillTask)
{
}
}