Badel2
Badel2
After running cargo web, executing the wasm file results in this panic: > thread 'main' panicked at 'unknown name section chunk type: 7', src/wasm_context.rs:642:41 I fixed this in this commit:...
There are some strange bugs when using large zipped worlds in the web demo. Instead of a user friendly "out of memory" error, we get "TextDecoder" errors: ``` Uncaught (in...
The [nbt_search](https://badel2.github.io/slime_seed_finder/nbt_search.html) demo is supposed to allow finding strings in NBT files. Because of a change of NBT parsing libraries, that feature is no longer supported. And I forgot the...
In the biome viewer: https://badel2.github.io/slime_seed_finder/biomes.html The "DOWNLOAD MAP" button uses an off-screen canvas to generate a high resolution image. However if that canvas is too large, an empty image is...
In PR #9 I started documenting the different hash functions used by the minecraft code. But that's incomplete so I'm opening this issue. A hash function in this context is...
Some tools in this repo currently don't support Minecraft Java 1.15. This is because the 1.15 version changes the way biomes are stored: 1.14: biomes are stored inside the chunk...
It would be nice to support mobile devices at least for the coolest demo: https://badel2.github.io/slime_seed_finder/biomes.html From what I know about web development, we should just implement a new set of...
Starting in Rust 1.49, the js serialization crashes at runtime when compiled in release mode. Steps to reproduce: ``` git clone https://github.com/koute/stdweb cd stdweb cd standalone_tests cargo-web build --release --target=wasm32-unknown-unknown...
As a user of fastanvil, I find myself converting between block coords, chunk coords and region coords fairly often. To avoid any mistakes that could happen because of this conversions,...
While taking a look at #89, I noticed that even with the proposed workaround, the ci script fails because the first example doesn't find the panicking input. I guess this...