0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-20 01:12:13 +02:00

Fix BlockListSetting using null for description

This commit is contained in:
Alexander01998 2019-08-19 22:01:16 +02:00
parent 75e8c05a5d
commit d83b6d50b2

View File

@ -47,7 +47,7 @@ public final class BlockListSetting extends Setting
public BlockListSetting(String name, Block... blocks)
{
this(name, null, blocks);
this(name, "", blocks);
}
public List<String> getBlockNames()