From 890f6a5c679d11b9ab57a14ed1125a896c7fde53 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Tue, 29 Jul 2014 21:42:17 -0500 Subject: [PATCH] Fixed a bug where terminal player preferences for the terminal would reset on reload. --- core/AEConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/AEConfig.java b/core/AEConfig.java index 976e16fa1..08b9e98d8 100644 --- a/core/AEConfig.java +++ b/core/AEConfig.java @@ -305,7 +305,7 @@ public class AEConfig extends Configuration implements IConfigureableObject, ICo { if ( e == setting ) { - String Category = e.getClass().getSimpleName(); + String Category = "Client"; Property p = this.get( Category, e.name(), settings.getSetting( e ).name(), getListComment( newValue ) ); p.set( newValue.name() ); }