Fixed missing config categories in ingame config

This commit is contained in:
raoulvdberge
2017-05-24 19:59:22 +02:00
parent a15e63eba1
commit 76b31c6710
2 changed files with 8 additions and 2 deletions

View File

@@ -1,8 +1,11 @@
# Refined Storage Changelog
### 1.4.8
- Fixed missing config categories in ingame config (raoulvdberge)
### 1.4.7
- 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)
### 1.4.6

View File

@@ -241,8 +241,11 @@ public final class RSConfig {
list.addAll(new ConfigElement(config.getCategory(CONTROLLER)).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_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;
}