Skip to content

Commit 3094e3d

Browse files
committed
chore: bump version
1 parent d78e02b commit 3094e3d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
88
loader_version=0.15.0
99

1010
# Mod Properties
11-
mod_version = 1.1.4+1.20.2-1.20.4
11+
mod_version = 1.1.5+1.20.2-1.20.4
1212
maven_group = com.example
1313
archives_base_name = data-loader
1414

src/main/java/dataloader/DataLoader.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ public static UnaryOperator<Text> getSourceTextSupplier(String translationKey) {
2929
public void onInitialize() {
3030
try {
3131
CONFIG = Config.load();
32-
Path path = DATAPACKS_PATH;
33-
if (!Files.exists(path)) {
34-
Files.createDirectory(path);
32+
if (!Files.exists(DATAPACKS_PATH)) {
33+
Files.createDirectory(DATAPACKS_PATH);
3534
}
3635
} catch (IOException e) {
3736
LOGGER.error("Failed to initialize data loader: ", e);
3837
}
39-
4038
}
4139
}

0 commit comments

Comments
 (0)