Skip to content

Commit 26a3e83

Browse files
author
Picoseconds
committed
fix: put missing semicolon in Physics.ts
1 parent e62567d commit 26a3e83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/moomoo/Physics.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function moveTowards(player: Player, angle: number, speed: number, deltaTime: nu
2828
* @param gameObj the GameObject to test collision for
2929
*/
3030
function collidePlayerGameObject(player: Player, gameObj: GameObject) {
31-
return collideCircles(player.location, 35, gameObj.location, gameObj.data === ItemType.PitTrap ? 0.3 * gameObj.realScale : gameObj.realScale;
31+
return collideCircles(player.location, 35, gameObj.location, gameObj.data === ItemType.PitTrap ? 0.3 * gameObj.realScale : gameObj.realScale);
3232
}
3333

3434
function tryMovePlayer(player: Player, delta: number, xVel: number, yVel: number, state: GameState) {

0 commit comments

Comments
 (0)