forked from GeyserMC/Geyser
"packs" directory auto-create (#484)
* "packs" directory auto-create * cleaned indentation in ResourcePack.java * Cleaned ResourcePack.java * Another cleanup I hate editor on github. * Yet another * Another indentation cleanup
This commit is contained in:
parent
3f0a2ae833
commit
ec6a356b4e
1 changed files with 5 additions and 1 deletions
|
@ -33,6 +33,10 @@ public class ResourcePack {
|
||||||
|
|
||||||
File directory = new File("packs");
|
File directory = new File("packs");
|
||||||
|
|
||||||
|
if (!directory.exists()) {
|
||||||
|
directory.mkdir();
|
||||||
|
}
|
||||||
|
|
||||||
for(File file : directory.listFiles()) {
|
for(File file : directory.listFiles()) {
|
||||||
if(file.getName().endsWith(".zip") || file.getName().endsWith(".mcpack")) {
|
if(file.getName().endsWith(".zip") || file.getName().endsWith(".mcpack")) {
|
||||||
ResourcePack pack = new ResourcePack();
|
ResourcePack pack = new ResourcePack();
|
||||||
|
|
Loading…
Reference in a new issue