diff options
| author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2022-05-28 15:53:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-28 17:53:16 +0200 |
| commit | a6546a1abe954b394c40be58d73d6fb03d93709e (patch) | |
| tree | 39c6ac87ba3253dc302db31fdc99d115168ebb44 /src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java | |
| parent | 097542b6f2dfb0edb63afa00136f1fe610d57550 (diff) | |
| download | notenoughupdates-a6546a1abe954b394c40be58d73d6fb03d93709e.tar.gz notenoughupdates-a6546a1abe954b394c40be58d73d6fb03d93709e.tar.bz2 notenoughupdates-a6546a1abe954b394c40be58d73d6fb03d93709e.zip | |
added config saving (#149)
* i am unsure why this was here but it doesnt seem needed
* saving config when closing menus with configs
* Chatting
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java index 5a8fd901..2ed708e9 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscgui/GuiEnchantColour.java @@ -421,6 +421,11 @@ public class GuiEnchantColour extends GuiScreen { } @Override + public void onGuiClosed() { + NotEnoughUpdates.INSTANCE.saveConfig(); + } + + @Override protected void keyTyped(char typedChar, int keyCode) throws IOException { super.keyTyped(typedChar, keyCode); for (int yIndex = 0; yIndex < guiElementTextFields.size(); yIndex++) { |
