mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Fixed targetname error
This commit is contained in:
parent
bd999a6d9c
commit
8a3b62e93f
1 changed files with 2 additions and 1 deletions
|
@ -1794,12 +1794,13 @@ void ScriptVM::Execute(ScriptVariable *data, int dataSize, str label)
|
|||
targetList = world->GetExistingTargetList(m_VMStack.GetTop().constStringValue());
|
||||
|
||||
if (!targetList || !targetList->NumObjects()) {
|
||||
str targetname = m_VMStack.GetTop().stringValue();
|
||||
// the target name was not found
|
||||
m_VMStack.GetTop().setListenerValue(NULL);
|
||||
|
||||
if ((*m_CodePos >= OP_BIN_EQUALITY && *m_CodePos <= OP_BIN_GREATER_THAN_OR_EQUAL)
|
||||
|| (*m_CodePos >= OP_BOOL_UN_NOT && *m_CodePos <= OP_UN_CAST_BOOLEAN)) {
|
||||
ScriptError("Targetname '%s' does not exist.", m_VMStack.GetTop().stringValue().c_str());
|
||||
ScriptError("Targetname '%s' does not exist.", targetname.c_str());
|
||||
}
|
||||
} else if (targetList->NumObjects() == 1) {
|
||||
// single listener
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue