Merge pull request #2806 from genNAowl/burning-affects-tiles

Incendiary Bullets Make Fires When Hitting Tiles
This commit is contained in:
Anuken
2020-10-05 16:35:13 -04:00
committed by GitHub
2 changed files with 10 additions and 1 deletions

View File

@@ -192,7 +192,7 @@ public class BlockIndexer{
if(other == null) continue;
if(other.team == team && pred.get(other) && intSet.add(other.pos())){
if((team == null || other.team == team) && pred.get(other) && intSet.add(other.pos())){
cons.get(other);
any = true;
}