1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

Fix an inverted condition (Bug #3209)

This commit is contained in:
scrawl 2016-02-18 01:25:52 +01:00
parent c4d38bb42d
commit a94029267f

View file

@ -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();
} }