Nick

Results 19 comments of Nick

What IP address are you binding the server on? You should probably bind it on `0.0.0.0` to listen on any IP. With the client you can just use the [bind_any()](https://docs.rs/laminar/0.5.0/laminar/struct.Socket.html#method.bind_any)...

Disregard my previous comment, I actually ran into the same issue and the solution was to instead of using bind_any() on the client to bind on `0.0.0.0:0`. With bind any...

I found a quick fix by replacing: ``` id = defs_get(ids_get(v, 'Unknown'), {'name': 'Unknown Entity %s' % v, 'idStr': 'Unknown Entity %s' % v, 'id': -1, 'type': 'Unknown'} )['name'] ```...

I added the following code for debugging purposes: ``` try: defs_get(ids_get(v, 'Unknown'), {'name': 'Unknown Entity %s' % v, 'idStr': 'Unknown Entity %s' % v, 'id': -1, 'type': 'Unknown'} )['name'] except...

Also `red_flower` doesn't have a name. There might be more. I haven't checked. That's just what my code has come across so far.

Make sure you have wget installed since the script uses wget. And if you obtain mcpelauncher-linux using git you'll also have to update the submodule: ``` git clone https://github.com/MCMrARM/mcpelauncher-linux.git ```...

I have a patch for your PKGBUILD since yours it's not working for me: https://gist.github.com/nic96/e03b30d7097097409722f964a6c30a69

This has something to do with the PKGBUILD. I'm working on a solution.

This is what gdb tells me: ``` Thread 1 "mcpelauncher" received signal SIGSEGV, Segmentation fault. 0x5669696f in mcpe::string::c_str() const () ```

Compiling from the master branch here works as well. Just the package doesn't work and I believe it's because the installed location is different from the compiling location.