Exemplo n.º 1
0
 public static WorldConfig getWorldConfig(String world) {
   return worldConfigs.get(world);
 }
Exemplo n.º 2
0
 public static boolean isLogging(String worldName, Logging l) {
   final WorldConfig wcfg = worldConfigs.get(worldName);
   return wcfg != null && wcfg.isLogging(l);
 }
Exemplo n.º 3
0
 public static WorldConfig getWorldConfig(World world) {
   return worldConfigs.get(world.getName());
 }
Exemplo n.º 4
0
 public static boolean isLogging(World world, Logging l) {
   final WorldConfig wcfg = worldConfigs.get(world.getName());
   return wcfg != null && wcfg.isLogging(l);
 }