Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
fix: fix explosions wall check
Browse files Browse the repository at this point in the history
  • Loading branch information
leia-uwu committed Mar 18, 2024
1 parent a168ac0 commit 9186a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/objects/explosion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class Explosion {
}
}

if (object.__type === ObjectType.Obstacle && !object.collidable) break;
if (object.__type === ObjectType.Obstacle && object.collidable) break;
}
}

Expand Down

0 comments on commit 9186a52

Please sign in to comment.