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
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ private static void reloadCategory( ConfigCategory oldCat, ConfigCategory newCat
if( oldProperty.isList() )
{
oldProperty.setValues( oldProperty.getStringList() );
oldProperty.setValues( newProperty.getStringList() );
}
else
{