mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-28 15:02:01 +00:00
- changed ACS's print n: cast to use an actor's tag for non-players instead of the class name.
SVN r2784 (trunk)
This commit is contained in:
parent
a0d7693f33
commit
dca03ac76a
1 changed files with 1 additions and 1 deletions
|
@ -5040,7 +5040,7 @@ int DLevelScript::RunScript ()
|
||||||
}
|
}
|
||||||
else if (activator)
|
else if (activator)
|
||||||
{
|
{
|
||||||
work += RUNTIME_TYPE(activator)->TypeName.GetChars();
|
work += activator->GetTag();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue