mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
Lesh:
1. patch for "Bug: Enemy turns around in turn based mode!" 2. action strings is added for new actions (e.g. flank left). needed for debug git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@319 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -5123,6 +5123,16 @@ void TurnSoldier( SOLDIERTYPE *pSoldier)
|
||||
return;
|
||||
}
|
||||
}
|
||||
else // Lesh: patch for "Bug: Enemy turns around in turn based mode!"
|
||||
{
|
||||
// in case of errors in turning tasks
|
||||
if ( pSoldier->bDesiredDirection > 7 || pSoldier->bDesiredDirection < 0)
|
||||
{
|
||||
DebugMsg( TOPIC_JA2, DBG_LEVEL_3, String("TurnSoldier() Warinig: Invalid desired direction for non-vehicle unit") );
|
||||
pSoldier->bDesiredDirection = pSoldier->bDirection;
|
||||
}
|
||||
}
|
||||
// Lesh: patch ended
|
||||
|
||||
// We handle sight now....
|
||||
if ( pSoldier->uiStatusFlags & SOLDIER_LOOK_NEXT_TURNSOLDIER )
|
||||
|
||||
Reference in New Issue
Block a user