We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 347416c commit b5e778eCopy full SHA for b5e778e
1 file changed
src/simulation/SimulationData.cpp
@@ -183,8 +183,8 @@ void SimulationData::init_can_move()
183
if (elements[movingType].Properties & TYPE_PART)
184
can_move[movingType][PT_SAWD] = 0;
185
186
- // Let most non-solids pass through unmarked PAPR
187
- if (elements[movingType].Properties & (TYPE_GAS | TYPE_PART | TYPE_LIQUID) && (movingType != PT_FIRE && movingType != PT_SAWD))
+ // Let most elements pass through unmarked PAPR
+ if (movingType != PT_FIRE && movingType != PT_SAWD)
188
can_move[movingType][PT_PAPR] = 3;
189
}
190
0 commit comments