Browse Source

Fix error finding hero_select.tscn

master
Luna 7 years ago
parent
commit
0e7ae76a74
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      scripts/player.gd

+ 1
- 1
scripts/player.gd View File

@ -250,7 +250,7 @@ func switch_hero_interface():
toggle_mouse_capture()
# Pause so if we have walls and such nothing funny happens
get_tree().set_pause(true)
var interface = preload("res://scenes/HeroSelect.tscn").instance()
var interface = preload("res://scenes/hero_select.tscn").instance()
add_child(interface)
interface.get_node("Confirm").connect("pressed", self, "switch_hero_master")


Loading…
Cancel
Save