diff options
Diffstat (limited to 'client')
| -rw-r--r-- | client/game.gd | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/client/game.gd b/client/game.gd index 51b34544..7e954857 100644 --- a/client/game.gd +++ b/client/game.gd @@ -145,7 +145,7 @@ func _process(delta):  func get_tile_collision(pos: Vector2i) -> bool:  	var t = tile_by_pos.get(str(pos)) -	if t == null: return false +	if t == null: return true  	else: return tile_collide[t[0]]  func get_tile_interactive(pos: Vector2i) -> bool: | 
