Skip to content

Commit

Permalink
Merge pull request #8 from tetious/master
Browse files Browse the repository at this point in the history
Possible fix for issue #7
  • Loading branch information
MrTJP committed Jul 11, 2013
2 parents 261ae6b + 6aa8055 commit 5ab85c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common/mrtjp/projectred/tiles/TileAlloySmelter.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@ public void updateEntity() {
}
}
if (heat > 0) {
spawnParticles();
if (BasicUtils.isClient(worldObj)) {
spawnParticles();
}
if (hasWork) {
progress++;
}
Expand Down

0 comments on commit 5ab85c2

Please sign in to comment.