Update 'scripts/global.gd'
This commit is contained in:
parent
f0e10a273a
commit
38a6ad0d3f
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ var tutorialTimerCompleted = false # Used for after the timer goes off in the tu
|
|||
var playerDisable = false # Can be used to disable the player
|
||||
var playerDeathHealth = 100 # Can be changed by death.gd
|
||||
var kickAllPlayers = false # Can be set to true to kick all players in-game
|
||||
var respawnLocationChosen = true # When set to false, the game will be allowed to select a spawnpoint for the player
|
||||
var respawnLocationChosen = false # When set to false, the game will be allowed to select a spawnpoint for the player
|
||||
|
||||
func _process(delta):
|
||||
spawn_locations()
|
||||
|
@ -126,7 +126,7 @@ func reset_variables_hard():
|
|||
playerDisable = false
|
||||
playerDeathHealth = 100
|
||||
kickAllPlayers = false
|
||||
respawnLocationChosen = true
|
||||
respawnLocationChosen = false
|
||||
|
||||
func save_data():
|
||||
SettingsFile.save_data()
|
||||
|
|
Loading…
Reference in a new issue