env_steam: fix typo

This commit is contained in:
Marco Cawthorne 2023-09-13 10:40:01 -07:00
parent 5db3db539a
commit 8150f0c080
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ env_steam::Trigger(entity act, triggermode_t state)
m_bState = true;
break;
default:
m_bState == true ? false : true;
m_bState = (m_bState == true) ? false : true;
}
}