mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Little Alien
New key: Climb/Jump - Press "j" in tactical to climb the roof / jump over the fence git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@74 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -2317,6 +2317,27 @@ void GetKeyboardInput( UINT32 *puiNewEvent )
|
||||
}
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
BOOLEAN fNearHeigherLevel;
|
||||
BOOLEAN fNearLowerLevel;
|
||||
INT8 bDirection;
|
||||
GetMercClimbDirection( gpSMCurrentMerc->ubID, &fNearLowerLevel, &fNearHeigherLevel );
|
||||
|
||||
if ( fNearLowerLevel )
|
||||
{
|
||||
BeginSoldierClimbDownRoof( gpSMCurrentMerc );
|
||||
}
|
||||
if ( fNearHeigherLevel )
|
||||
{
|
||||
BeginSoldierClimbUpRoof( gpSMCurrentMerc );
|
||||
}
|
||||
|
||||
if ( FindFenceJumpDirection( gpSMCurrentMerc, gpSMCurrentMerc->sGridNo, gpSMCurrentMerc->bDirection, &bDirection ) )
|
||||
{
|
||||
BeginSoldierClimbFence( gpSMCurrentMerc );
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 'b':
|
||||
|
||||
Reference in New Issue
Block a user