forked from mirror/openmw-tes3mp
Fix an inverted condition (Bug #3209)
This commit is contained in:
parent
c4d38bb42d
commit
a94029267f
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ namespace Interpreter{
|
|||
retval << context.getCurrentCellName();
|
||||
}
|
||||
|
||||
else if(!dialogue) { // In Dialogue, not messagebox
|
||||
else if(dialogue) { // In Dialogue, not messagebox
|
||||
if( (found = check(temp, "faction", &i, &start))){
|
||||
retval << context.getNPCFaction();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue