o Reverted the wallwalk to the previous mode where duck = release from wall.

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@160 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
tankefugl 2005-06-02 17:07:23 +00:00
parent af75bded0e
commit 84a021a51a

View file

@ -1422,7 +1422,7 @@ void NS_UpdateWallsticking()
if (pmove->waterjumptime < 0)
pmove->waterjumptime = 0;
if((pmove->cmd.buttons & IN_DUCK) && !(pmove->oldbuttons & IN_JUMP) && (pmove->waterlevel < 2))
if(!(pmove->cmd.buttons & IN_DUCK) && !(pmove->oldbuttons & IN_JUMP) && (pmove->waterlevel < 2))
// if(!(pmove->cmd.buttons & IN_DUCK)) //&& ((pmove->onground != -1) || (pmove->numtouch > 0)))
// :tankefugl
{