I found this game very asthetically pleasing. I know that it is still a work in progress, but I set up a server for my kids to play on, Recently, the server keeps crashing due a line of code dealing with the living slimes. I attached a screenshot of the error on Github, Keep the up the great work.
Thank you for the 👍! I'm glad to hear that your kids are enjoying it and I'm sorry that you've encountered such a game-breaking bug. I took a quick look at the code just now and I'm pretty sure it's an issue with poison cleanup left by poison slimes. I'll add some more safety checks to the relevant code in the next release.
For now, the easiest way to prevent the crash is to disable the poison behavior. Unfortunately the settings for the slimes are baked into Asuna but you can edit the asuna/mods/livingslimes/init.lua file to change line 12 to allow_poison = false, which will disable it.
I found this game very asthetically pleasing. I know that it is still a work in progress, but I set up a server for my kids to play on, Recently, the server keeps crashing due a line of code dealing with the living slimes. I attached a screenshot of the error on Github, Keep the up the great work.
Thank you for the 👍! I'm glad to hear that your kids are enjoying it and I'm sorry that you've encountered such a game-breaking bug. I took a quick look at the code just now and I'm pretty sure it's an issue with poison cleanup left by poison slimes. I'll add some more safety checks to the relevant code in the next release.
For now, the easiest way to prevent the crash is to disable the poison behavior. Unfortunately the settings for the slimes are baked into Asuna but you can edit the
asuna/mods/livingslimes/init.lua
file to change line 12 toallow_poison = false,
which will disable it.Thanks for the bug report!