MCPI-Revival / Hodgepodge

A random collection of useful and fun features
8 stars 2 forks source link

Build breaks (perhaps missing symbols?) #1

Open NikZapp opened 3 months ago

NikZapp commented 3 months ago
src/commands.cpp: In function ‘void chat_handle_packet_send(Minecraft*, ChatPacket*)’:
src/commands.cpp:153:101: error: ‘Level’ {aka ‘struct Level’} has no member named ‘is_client_side’
  153 |     if (packet->message.c_str()[0] != '/' || packet->message.c_str()[1] == '/' || minecraft->level->is_client_side) {
      |                                                                                                     ^~~~~~~~~~~~~~
make: *** [Makefile:14: build/commands.o] Error 1

Running the latest release of MCPI Reborn as advised in the building section. Built with make all

Bigjango13 commented 3 months ago

The building of this requires some new symbols, which I have added in a pull request: https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/pulls/106 Until that is merged, you probably can't build it unfortunately.

Lenni-builder commented 3 months ago

Couldn't you just manually add the changes from the PR and build MCPI Reborn yourself for now?