Fixed missing config categories in ingame config
This commit is contained in:
@@ -1,8 +1,11 @@
|
|||||||
# Refined Storage Changelog
|
# Refined Storage Changelog
|
||||||
|
|
||||||
|
### 1.4.8
|
||||||
|
- Fixed missing config categories in ingame config (raoulvdberge)
|
||||||
|
|
||||||
### 1.4.7
|
### 1.4.7
|
||||||
- Fixed bug where Portable Grid would dupe in inventory (raoulvdberge)
|
- Fixed bug where Portable Grid would dupe in inventory (raoulvdberge)
|
||||||
- Worked around autocrafting bug to prevent crashes (raoulvdberge)
|
- Worked around an autocrafting bug to prevent crashes (raoulvdberge)
|
||||||
- Added config option "debugLog" that logs diagnostic info to help developers to fix the inventory loss bug, please enable it if you are experiencing this issue (raoulvdberge)
|
- Added config option "debugLog" that logs diagnostic info to help developers to fix the inventory loss bug, please enable it if you are experiencing this issue (raoulvdberge)
|
||||||
|
|
||||||
### 1.4.6
|
### 1.4.6
|
||||||
|
|||||||
@@ -241,8 +241,11 @@ public final class RSConfig {
|
|||||||
list.addAll(new ConfigElement(config.getCategory(CONTROLLER)).getChildElements());
|
list.addAll(new ConfigElement(config.getCategory(CONTROLLER)).getChildElements());
|
||||||
list.addAll(new ConfigElement(config.getCategory(UPGRADES)).getChildElements());
|
list.addAll(new ConfigElement(config.getCategory(UPGRADES)).getChildElements());
|
||||||
list.addAll(new ConfigElement(config.getCategory(WIRELESS_TRANSMITTER)).getChildElements());
|
list.addAll(new ConfigElement(config.getCategory(WIRELESS_TRANSMITTER)).getChildElements());
|
||||||
list.addAll(new ConfigElement(config.getCategory(WIRELESS_GRID)).getChildElements());
|
|
||||||
list.addAll(new ConfigElement(config.getCategory(GRID)).getChildElements());
|
list.addAll(new ConfigElement(config.getCategory(GRID)).getChildElements());
|
||||||
|
list.addAll(new ConfigElement(config.getCategory(WIRELESS_GRID)).getChildElements());
|
||||||
|
list.addAll(new ConfigElement(config.getCategory(WIRELESS_FLUID_GRID)).getChildElements());
|
||||||
|
list.addAll(new ConfigElement(config.getCategory(WIRELESS_CRAFTING_MONITOR)).getChildElements());
|
||||||
|
list.addAll(new ConfigElement(config.getCategory(PORTABLE_GRID)).getChildElements());
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user