Skip to content

Commit

Permalink
v1.6.4.0b
Browse files Browse the repository at this point in the history
  • Loading branch information
ipodtouch0218 committed Jun 28, 2022
1 parent 7f36a53 commit e2fd365
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Assets/Scripts/Tile/SiblingRuleTile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
public class SiblingRuleTile : RuleTile {
public List<TileBase> siblings;
public override bool RuleMatch(int neighbor, TileBase other) {
Debug.Log(neighbor);
return neighbor switch {
TilingRuleOutput.Neighbor.This => siblings.Contains(other) || base.RuleMatch(neighbor, other),
TilingRuleOutput.Neighbor.NotThis => !siblings.Contains(other) && base.RuleMatch(neighbor, other),
Expand Down

0 comments on commit e2fd365

Please sign in to comment.