BlockTranslator: use less ambiguous function names

This commit is contained in:
Dylan K. Taylor
2023-05-05 14:47:23 +01:00
parent 4f32f5e0b7
commit 289ede669d
15 changed files with 19 additions and 19 deletions

View File

@ -34,7 +34,7 @@ class BlockTranslatorTest extends TestCase{
public function testAllBlockStatesSerialize() : void{
$blockTranslator = TypeConverter::getInstance()->getBlockTranslator();
foreach(RuntimeBlockStateRegistry::getInstance()->getAllKnownStates() as $state){
$blockTranslator->toRuntimeId($state->getStateId());
$blockTranslator->internalIdToNetworkId($state->getStateId());
}
}
}