1
0
forked from noxious/client

Commented out chat bubble, removed old comment

This commit is contained in:
2024-09-15 21:07:48 +02:00
parent 4711dd3258
commit 6d5c3ab3b3
2 changed files with 2 additions and 3 deletions

View File

@ -44,7 +44,6 @@ export function setAllTiles(zone: Tilemap, layer: TilemapLayer, tiles: string[][
export const calculateIsometricDepth = (x: number, y: number, width: number = 0, height: number = 0, isCharacter: boolean = false) => {
const baseDepth = x + y
if (isCharacter) {
// Increase the offset for characters to ensure they're always on top
return baseDepth // @TODO: Fix collision, this is a hack
}