mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-12-21 15:57:43 +01:00
0418629062
- Fixed block destroying - Broke signChange into more methods
33 lines
830 B
Java
33 lines
830 B
Java
package com.Acrobot.ChestShop.Utils;
|
|
|
|
import com.Acrobot.ChestShop.ChestShop;
|
|
import org.bukkit.util.config.Configuration;
|
|
|
|
import java.io.File;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class uLongName {
|
|
public static final Configuration config = new Configuration(new File(ChestShop.folder, "longName.storage"));
|
|
|
|
public static String getName(final String shortName) {
|
|
return config.getString(shortName, shortName);
|
|
}
|
|
|
|
public static void saveName(String name) {
|
|
if (name.length() != 16) return;
|
|
config.setProperty(name.substring(0, 15), name);
|
|
reloadConfig();
|
|
}
|
|
|
|
public static String stripName(String name) {
|
|
return (name.length() > 15 ? name.substring(0, 15) : name);
|
|
}
|
|
|
|
private static void reloadConfig() {
|
|
config.save();
|
|
config.load();
|
|
}
|
|
}
|