i WUV impact

This commit is contained in:
Leijurv 2019-04-13 19:10:13 -07:00
parent f85afdbc70
commit 6e49adea33
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 3 additions and 0 deletions

View File

@ -119,6 +119,9 @@ public final class ChunkPacker {
}
public static Block stringToBlockRequired(String name) {
if (name.equals("lit_redstone_ore")) {
return stringToBlockRequired("redstone_ore");
}
Block block = stringToBlockNullable(name);
Objects.requireNonNull(block);
return block;