Fix glitch ladders

This commit is contained in:
we prefer instagib metl3 2013-01-07 21:07:11 +01:00
parent 8eb717d4d0
commit c469897606
1 changed files with 2 additions and 1 deletions

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)