Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Aug 23, 2024
1 parent 9a54d98 commit 3d30ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy/map/galaxy_map.gd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func _ready() -> void:

for system in galaxy.systems:
var system_node: GalaxyMapSystem = self.galaxy_map_system.instantiate()
system_node.clicked.connect(func(node: GalaxyMapSystem) -> void: self._on_system_clicked(system))
system_node.clicked.connect(func(_node: GalaxyMapSystem) -> void: self._on_system_clicked(system))
system_node.name = system.name
system_node.current = (system == current_system)
self._system_nodes[system.name] = system_node
Expand Down

0 comments on commit 3d30ff1

Please sign in to comment.