Fix ConfigEntry String value saving

This commit is contained in:
James Seibel
2024-07-21 16:09:46 -05:00
parent 36fcc46445
commit 44fe1eafb1
2 changed files with 25 additions and 6 deletions
@@ -67,10 +67,11 @@ public interface IConfigEntry<T>
* Checks if the option is valid
*
* 0 == valid
* 2 == invalid
* 1 == number too high
* -1 == number too low
*/
byte isValid();
byte isValid(); // TODO replace with an enum
/** Checks if a value is valid */
byte isValid(T value);