Remove uneeded method in the hull

This commit is contained in:
Chris Bell 2024-12-28 17:19:02 -06:00
parent ddbd76c1e1
commit df077c24dd
2 changed files with 1 additions and 3 deletions

View File

@ -12,5 +12,4 @@ func interact():
elif parent_ship.ship_is_piloted: elif parent_ship.ship_is_piloted:
player_reference.set_is_piloting(false) player_reference.set_is_piloting(false)
parent_ship.remove_piloting_player() parent_ship.remove_piloting_player()
parent_ship._sync_piloting_state()

View File

@ -97,7 +97,6 @@ func set_piloting_player(player: Player):
else: else:
print("The ship is no longer piloted.") print("The ship is no longer piloted.")
func remove_piloting_player(): func remove_piloting_player():
piloting_player = null piloting_player = null