- changed ACS Checkweapon to compare names instead of strings.

SVN r3107 (trunk)
This commit is contained in:
Christoph Oelckers 2011-01-17 00:33:20 +00:00
parent e4b236cbcc
commit b3a7c70c01
1 changed files with 11 additions and 12 deletions

View File

@ -6025,18 +6025,17 @@ int DLevelScript::RunScript ()
sp--;
break;
case PCD_CHECKWEAPON:
if (activator == NULL || activator->player == NULL || // Non-players do not have weapons
activator->player->ReadyWeapon == NULL)
{
STACK(1) = 0;
}
else
{
STACK(1) = 0 == stricmp (FBehavior::StaticLookupString (STACK(1)),
activator->player->ReadyWeapon->GetClass()->TypeName.GetChars());
}
break;
case PCD_CHECKWEAPON:
if (activator == NULL || activator->player == NULL || // Non-players do not have weapons
activator->player->ReadyWeapon == NULL)
{
STACK(1) = 0;
}
else
{
STACK(1) = activator->player->ReadyWeapon->GetClass()->TypeName == FName(FBehavior::StaticLookupString (STACK(1)), true);
}
break;
case PCD_SETWEAPON:
if (activator == NULL || activator->player == NULL)