minetest-mods / stamina

Adds hunger (stamina) to minetest.
17 stars 19 forks source link

Fix crash with latest Minetest-dev version by fixing the logical order #34

Closed Thomas--S closed 3 years ago

Thomas--S commented 3 years ago

stamina.set_saturation() uses the hud id set for the player. Thus, the id should be set before calling this function. Until now, it only worked because of undocumented behaviour. See minetest/minetest#10568

fluxionary commented 3 years ago

Fascinating. I guess I never thought about this much cuz it worked anyway. Looks good to me.