mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-08 11:51:23 -04:00
Fix an inverted condition (Bug #3209)
This commit is contained in:
parent
c4d38bb42d
commit
a94029267f
@ -114,7 +114,7 @@ namespace Interpreter{
|
|||||||
retval << context.getCurrentCellName();
|
retval << context.getCurrentCellName();
|
||||||
}
|
}
|
||||||
|
|
||||||
else if(!dialogue) { // In Dialogue, not messagebox
|
else if(dialogue) { // In Dialogue, not messagebox
|
||||||
if( (found = check(temp, "faction", &i, &start))){
|
if( (found = check(temp, "faction", &i, &start))){
|
||||||
retval << context.getNPCFaction();
|
retval << context.getNPCFaction();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user