BlockLegacyIdHelper: fixed a mistake in exception message

This commit is contained in:
Dylan K. Taylor 2020-08-03 23:59:06 +01:00
parent 35e8fd01ff
commit 764f92c456

View File

@ -195,6 +195,6 @@ final class BlockLegacyIdHelper{
case DyeColor::BLACK()->id():
return new BlockIdentifier(Ids::BLACK_GLAZED_TERRACOTTA);
}
throw new AssumptionFailedError("Switch should cover all wood types");
throw new AssumptionFailedError("Switch should cover all colours");
}
}