Crash in mcl_experience #954
Labels
No Label
#P1 CRITICAL
#P2: HIGH
#P3: elevated
#P4 priority: medium
#P6: low
#Review
annoying
API
bug
code quality
combat
commands
compatibility
configurability
contribution inside
controls
core feature
creative mode
delayed for engine release
documentation
duplicate
enhancement
environment
feature request
gameplay
graphics
ground content conflict
GUI/HUD
help wanted
incomplete feature
invalid / won't fix
items
looking for contributor
mapgen
meta
mineclone2+
Minecraft >= 1.13
Minecraft >= 1.17
missing feature
mobile
mobs
mod support
model needed
multiplayer
Needs adoption
needs discussion
needs engine change
needs more information
needs research
nodes
non-mob entities
performance
player
possible close
redstone
release notes
schematics
Skyblock
sounds
Testing / Retest
tools
translation
unconfirmed
mcl5
mcla
Media missing
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: VoxeLibre/VoxeLibre#954
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Thanks, I didn't get to report that in time but I bumped into that issue about an hour ago when I wanted to try the latest commits. :)
My game crashed when I was mining coal, then I joined kay27's server and the server kept crashing when I killed a wolf or tried to pick up XP from fishing. And there was another player, so that was probably another "crash source".
This is due to your earlier commit:
cfc86bcf3d
It also causes crashes when trying to sleep & eat; reverting your change fixes the crashes in all 3 mods as expected.
Attempting to sleep in beds crash:
Trying to eat crash:
get_velocity()
doesn't work in 5.3.it should but...
i have a wrap for that but not sure whether it good or not:
local velocity = player:get_velocity() or player:get_player_velocity() or {x=0,y=-10,z=0}
trying to fix locally
00146c96e5
yep, the fix works as expected
Ok, I did not expect minetest to be that broken. Do you currently have access rights to this repo or do I need to merge it for you? If so, I need to know how I can pick up a single commit.
Ok,
git cherry-pick
did the job.Thanks. Wussy had revoked the rights, so you are the only one who can help him to fix critical bugs in master.
I don't know whether 5.3 broken or it must be so (?), minetest issue tracker keeps silence about that too...
I know what happened. You asked about MT 5.4 compability in the other issue, so I tried it out in MT 5.4 and noticed the warnings. In 5.3 there is get_player_velocity and get_velocity returns nil for players, and in 5.4 get_velocity and get_player_velocity both return the velocity, but get_player_velocity is deprecated.