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:
lalien
2006-05-20 19:50:41 +00:00
parent 92a538a1a0
commit cc7bae40a3
+21
View File
@@ -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':