1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-12 03:00:30 +00:00

Fix list-like config options not reloading

Closes #199
This commit is contained in:
SquidDev 2019-05-08 08:00:07 +01:00
parent 8fafec4915
commit 7f2471d6b2

View File

@ -402,7 +402,7 @@ public final class Config
if( oldProperty.isList() )
{
oldProperty.setValues( oldProperty.getStringList() );
oldProperty.setValues( newProperty.getStringList() );
}
else
{