Skip to content

Instantly share code, notes, and snippets.

@RootKiller
Last active October 28, 2022 17:41
Show Gist options
  • Save RootKiller/e67ec7734255ebe27181df0f82549105 to your computer and use it in GitHub Desktop.
Save RootKiller/e67ec7734255ebe27181df0f82549105 to your computer and use it in GitHub Desktop.
// Before
if (m_planningMode == PLANNING_MODE_SHAFTS && hoveredCellY + 1 >= m_planningStartY)
// After
if ((m_planningMode == PLANNING_MODE_SHAFTS) && ((hoveredCellY + 1) >= m_planningStartY))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment