ch-yx

Results 34 comments of ch-yx

ah it is there. 21w17a\client\net\minecraft\world\level\chunk\storage\RegionFileVersion.java seems that it is still here in 21w17a

Thanks for your code to parse the region file. Do you have code to build/edit region files?

> > > The `File` class is not much more than a compound tag with a `.root` property and two extra methods: `.load(filename, ...)` and `.save(filename, ...)`. So yeah, if...

will fixing that break backwards compatibility?

i suggest rename current 'facing'='player' to 'eyesight', and add a new facing=player

Sounds like it's referring to the spawning cap. . . Is it possible to have the word light in the rule name?

code that only check if they both have tag: https://github.com/gnembon/fabric-carpet/blob/master/src/main/java/carpet/mixins/ItemEntityMixin.java#L94 code that forget loottable: https://github.com/gnembon/fabric-carpet/blob/master/src/main/java/carpet/helpers/InventoryHelper.java#L59

here is a example of the new added generator creater function. generator(next,has_next) the generator has a Value to store its Status which is Null at the beginning. the first argument...

some block`s shape depends on who you are. such as snower snow and scaffolding.🤷‍♂️

random offset of bamboos like blocks is based on its x and z. ``` public static long hashCode(int x, int z) { long l = (long)(x * 3129871) ^ (long)z...