mirror of
https://github.com/geekfrog/PermissionsTime.git
synced 2025-09-06 02:56:58 +00:00
fix bugs
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package gg.frog.mc.permissionstime.config;
|
||||
|
||||
import gg.frog.mc.permissionstime.PluginMain;
|
||||
import gg.frog.mc.permissionstime.utils.config.PluginConfig;
|
||||
|
||||
/**
|
||||
@ -13,18 +14,17 @@ public class LangCfg extends PluginConfig {
|
||||
public static String NO_PERMISSION = null;
|
||||
public static String CONFIG_RELOADED = null;
|
||||
|
||||
public LangCfg(String fileName) {
|
||||
super(fileName);
|
||||
public LangCfg(String fileName, PluginMain pm) {
|
||||
super(fileName, pm);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void init() {
|
||||
}
|
||||
protected void init() {}
|
||||
|
||||
@Override
|
||||
protected void loadToDo() {
|
||||
NO_PERMISSION = setGetDefault("nopermission","&4你没有权限这么做");
|
||||
CONFIG_RELOADED = setGetDefault("configReloaded","&a配置重载完成");
|
||||
NO_PERMISSION = setGetDefault("nopermission", "&4你没有权限这么做");
|
||||
CONFIG_RELOADED = setGetDefault("configReloaded", "&a配置重载完成");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user