Skip to content

Commit

Permalink
* Further hack to fix CI build on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
iProgramMC committed Apr 8, 2024
1 parent d3c87d3 commit b1a2a9d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/world/tile/WireTile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
// Brent, please help. I don't want to merge it into master like this.
#include "RedStoneTorchTile.cpp"
#include "LeverTile.cpp"
#include "ButtonTile.cpp"
#include "PressurePlateTile.cpp"

#endif

Expand Down Expand Up @@ -130,7 +132,7 @@ void WireTile::calculateChanges(Level* level, int x, int y, int z, int x2, int y
int newPower = 0;

m_bIsPowerSource = false;
bool flag = level->hasNeighborSignal(x, y, z);
bool flag = level->hasNeighborSignal(x, y, z);
m_bIsPowerSource = true;

if (flag)
Expand Down

0 comments on commit b1a2a9d

Please sign in to comment.