You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as far as I can tell I'm doing everything correctly, I just get constant errors though.
WARNING - Could not find translation information for block minecraft:stone from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message
WARNING - Could not find translation information for block minecraft:sandstone from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message
WARNING - Could not find translation information for block minecraft:dirt from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message
WARNING - Could not find translation information for block minecraft:sand from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message
WARNING - Could not find translation information for block minecraft:water from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message
WARNING - Could not find translation information for block minecraft:oak_door from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message
WARNING - Could not find translation information for block minecraft:log[axis="y",material="oak"] from universal in PyMCTranslate.Version(java, (1, 20, 4)). If this is not a vanilla block ignore this message```
examples of my block definitions:
```these definitions work (but still give that warning)
Block("minecraft", "stone")
Block("minecraft", "grass_block", {"snowy": StringTag("true")})
these do NOT work (no block is placed in the world)
Block.from_string_blockstate("minecraft:fence_gate[material=\"oak\"]") (or Block("minecraft", "fence_gate", {"material": StringTag("oak")})```
no clue, at all.
The text was updated successfully, but these errors were encountered:
as far as I can tell I'm doing everything correctly, I just get constant errors though.
The text was updated successfully, but these errors were encountered: