Skip to content

Commit

Permalink
fix missing config file
Browse files Browse the repository at this point in the history
  • Loading branch information
AlasDiablo committed Aug 1, 2020
1 parent e44b5c7 commit 6a962f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '4.4.0.47-experimental'
version = '4.4.0.48-experimental'
group = 'fr.alasdiablo.janoeo'
archivesBaseName = 'Janoeo'

Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 4.4.0.47-experimental
+ fix missing config file

### 4.4.0.47-experimental
+ fix harvest level
+ fix redstone ore always lit
Expand Down
1 change: 1 addition & 0 deletions src/main/java/fr/alasdiablo/janoeo/JANOEO.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public JANOEO() {
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, EndConfig.CONFIG_SPEC, "janoeo-end.toml");
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, GravelConfig.CONFIG_SPEC, "janoeo-gravel.toml");
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, FrequencyConfig.CONFIG_SPEC, "janoeo-frequency.toml");
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, FrequencyConfig.CONFIG_SPEC, "janoeo-basalt.toml");
FMLJavaModLoadingContext.get().getModEventBus().addListener(this::setup);
}

Expand Down

0 comments on commit 6a962f2

Please sign in to comment.