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
First of all, thank your for your great job helping in the support of Python programming in Minecraft.
As you know, with MC 1.13 the changes to using strings instead of ids for the blocks have broken mcpi for actual MC releases. Do you plan to support a mapping between current block names and strings, instead of ids?
IMHO this is the first step in order to support string defined blocks (materials) in Python for Minecraft. I have read your opinion at zhuowei/RaspberryJuice#84 (comment) and probably you don't plan to change this library.
Do you think that a new mcpi2 will be needed to support MC > 1.13?
I have tested the zhuowei/RaspberryJuice#84 and with a minor change in mcpi so it accepts strings in setBlock, it works with:
And thanks for updating mcpi to RaspberryJuice 1.12.2 ... spawning entities is great (among the other calls now supported).
I am working in https://github.com/juntosdesdecasa/mcthings (where I am using mcpi, of course, and also McDrawings) and my goal is to have the best platform for learning Python for kids.
The text was updated successfully, but these errors were encountered:
Hi Martin,
First of all, thank your for your great job helping in the support of Python programming in Minecraft.
As you know, with MC 1.13 the changes to using strings instead of ids for the blocks have broken mcpi for actual MC releases. Do you plan to support a mapping between current block names and strings, instead of ids?
IMHO this is the first step in order to support string defined blocks (materials) in Python for Minecraft. I have read your opinion at zhuowei/RaspberryJuice#84 (comment) and probably you don't plan to change this library.
Do you think that a new mcpi2 will be needed to support MC > 1.13?
I have tested the zhuowei/RaspberryJuice#84 and with a minor change in mcpi so it accepts strings in setBlock, it works with:
mc.setBlock(self.position.x, self.position.y, self.position.z, "bedrock")
And thanks for updating mcpi to RaspberryJuice 1.12.2 ... spawning entities is great (among the other calls now supported).
I am working in https://github.com/juntosdesdecasa/mcthings (where I am using mcpi, of course, and also McDrawings) and my goal is to have the best platform for learning Python for kids.
The text was updated successfully, but these errors were encountered: