Fix fork incompatability (instance vs. INSTANCE)
This commit is contained in:
parent
4c4717ea49
commit
4b21b8b4f3
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ public class Config {
|
|||
|
||||
public static void extractLang(String[] langauges) {
|
||||
for (String lang : langauges) {
|
||||
InputStream inputStream = ModularPowersuits.instance.getClass().getResourceAsStream(LANG_PATH + lang + ".lang");
|
||||
InputStream inputStream = ModularPowersuits.INSTANCE.getClass().getResourceAsStream(LANG_PATH + lang + ".lang");
|
||||
try {
|
||||
File file = new File(configFolder.getAbsolutePath() + "/lang/" + lang + ".lang");
|
||||
if (!file.exists()) {
|
||||
|
|
Loading…
Reference in a new issue