diff --git a/resources/changelog/1.19.2-1.0.4.txt b/resources/changelog/1.19.2-1.0.4.txt new file mode 100644 index 00000000..eaaeb92e --- /dev/null +++ b/resources/changelog/1.19.2-1.0.4.txt @@ -0,0 +1,6 @@ +As always, don't forget to backup your world before updating! +Requires CyclopsCore version 1.19.0 or higher. + +Fixes: +* Fix config file not being generated, Closes #14 + diff --git a/resources/changelog/1.20.1-1.0.4.txt b/resources/changelog/1.20.1-1.0.4.txt new file mode 100644 index 00000000..eaaeb92e --- /dev/null +++ b/resources/changelog/1.20.1-1.0.4.txt @@ -0,0 +1,6 @@ +As always, don't forget to backup your world before updating! +Requires CyclopsCore version 1.19.0 or higher. + +Fixes: +* Fix config file not being generated, Closes #14 + diff --git a/src/main/java/org/cyclops/integratedscripting/IntegratedScripting.java b/src/main/java/org/cyclops/integratedscripting/IntegratedScripting.java index d2a91716..be1fa815 100644 --- a/src/main/java/org/cyclops/integratedscripting/IntegratedScripting.java +++ b/src/main/java/org/cyclops/integratedscripting/IntegratedScripting.java @@ -148,6 +148,8 @@ protected CreativeModeTab.Builder constructDefaultCreativeModeTab(CreativeModeTa protected void onConfigsRegister(ConfigHandler configHandler) { super.onConfigsRegister(configHandler); + configHandler.addConfigurable(new GeneralConfig()); + configHandler.addConfigurable(new ItemScriptingDiskConfig()); configHandler.addConfigurable(new BlockScriptingDriveConfig());