diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-02-03 17:02:55 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-02-03 17:02:55 +0800 |
| commit | 0b0c9163782337b91f70c4bbb529f76e760b073e (patch) | |
| tree | c267eebdc56c97cb6b6b0198f984e37bbe5798e3 /src/main/java/me/shedaniel/rei/client/ConfigHelper.java | |
| parent | e9c090e47a1cf0e65ecaf123f06cd1272d42bc72 (diff) | |
| download | RoughlyEnoughItems-2.2.0.48.tar.gz RoughlyEnoughItems-2.2.0.48.tar.bz2 RoughlyEnoughItems-2.2.0.48.zip | |
Version Checker + Mirror REI + Fix Bugsv2.2.0.48
Fix #26
Close #21
Diffstat (limited to 'src/main/java/me/shedaniel/rei/client/ConfigHelper.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/client/ConfigHelper.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/client/ConfigHelper.java b/src/main/java/me/shedaniel/rei/client/ConfigHelper.java index 41996052e..ccc340af3 100644 --- a/src/main/java/me/shedaniel/rei/client/ConfigHelper.java +++ b/src/main/java/me/shedaniel/rei/client/ConfigHelper.java @@ -107,4 +107,16 @@ public class ConfigHelper { return config.checkUpdates; } + public void setCheckUpdates(boolean checkUpdates) { + config.checkUpdates = checkUpdates; + } + + public boolean isMirrorItemPanel() { + return config.mirrorItemPanel; + } + + public void setMirrorItemPanel(boolean mirrorItemPanel) { + config.mirrorItemPanel = mirrorItemPanel; + } + } |
