replace ' with "
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user