1
0
mirror of https://github.com/minetest/minetest.git synced 2025-07-06 18:00:21 +02:00

Fix glitch ladders

This commit is contained in:
we prefer instagib metl3
2013-01-07 21:07:11 +01:00
parent 8eb717d4d0
commit c469897606

View File

@ -268,7 +268,8 @@ void LocalPlayer::move(f32 dtime, Map &map, f32 pos_max_d,
if(nodemgr->get(map.getNode(p)).walkable == false)
continue;
// And the node above it has to be nonwalkable
if(nodemgr->get(map.getNode(p+v3s16(0,1,0))).walkable == true)
if(nodemgr->get(map.getNode(p+v3s16(0,1,0))).walkable ||
nodemgr->get(map.getNode(p+v3s16(0,2,0))).walkable)
continue;
}
catch(InvalidPositionException &e)