replace ' with "

This commit is contained in:
2024-10-13 20:41:13 +10:00
parent b5264c39f7
commit 2e66680d52
6 changed files with 13 additions and 13 deletions

View File

@@ -81,7 +81,7 @@ func navigate(to: Vector3, relocating: bool = false) -> void:
func _interact(with: Interactable) -> void:
print(self, ' interacting with ', with)
print(self, " interacting with ", with)
func _set_target_click(mouse_pos: Vector2) -> void:

View File

@@ -68,9 +68,9 @@ func _on_moving_started() -> void:
func _on_gathering_navigate_to(pos: Vector3) -> void:
print('_on_gathering_navigate_to')
print("_on_gathering_navigate_to")
if state != State.GATHERING:
return
print('_on_gathering_navigate_to 2')
print("_on_gathering_navigate_to 2")
navigate(pos)