mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 09:49:04 +00:00
Fixed: Some warnings
This commit is contained in:
parent
32135d8cc7
commit
a80a4d47b8
2 changed files with 4 additions and 5 deletions
|
@ -325,9 +325,11 @@ static _TOKENS_CLASSNAME _TOKENS_OBJNAME;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#ifdef NL_OS_WINDOWS
|
||||||
#pragma message( " ")
|
#pragma message( " ")
|
||||||
#pragma message( "NON-OPTIMISED: Persistent data class " NL_MACRO_TO_STR(PERSISTENT_CLASS) " not using a token family")
|
#pragma message( "NON-OPTIMISED: Persistent data class " NL_MACRO_TO_STR(PERSISTENT_CLASS) " not using a token family")
|
||||||
#pragma message( " ")
|
#pragma message( " ")
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,8 @@ CCombatAction * CCombatAIActionFactory::buildAiAction(const CStaticAiAction *aiA
|
||||||
nlassert(phrase);
|
nlassert(phrase);
|
||||||
#endif
|
#endif
|
||||||
const AI_ACTION::TAiActionType actionType = aiAction->getType();
|
const AI_ACTION::TAiActionType actionType = aiAction->getType();
|
||||||
if (actionType != AI_ACTION::Melee && actionType != AI_ACTION::Range)
|
if (actionType != AI_ACTION::Melee && actionType != AI_ACTION::Range) return NULL;
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
AI_ACTION::TAiEffectType effectType = aiAction->getData().Combat.EffectFamily;
|
AI_ACTION::TAiEffectType effectType = aiAction->getData().Combat.EffectFamily;
|
||||||
|
|
||||||
//get appropriate factory
|
//get appropriate factory
|
||||||
|
|
Loading…
Reference in a new issue