Clean repository-owned GDScript warnings
This commit is contained in:
parent
ff536e62a6
commit
1284619079
17 changed files with 60 additions and 74 deletions
|
|
@ -39,10 +39,10 @@ func set_weather(weather: WorldWeatherService.Weather) -> void:
|
|||
queue_redraw()
|
||||
|
||||
|
||||
func set_nighttime(is_nighttime: bool) -> void:
|
||||
if _is_nighttime == is_nighttime:
|
||||
func set_nighttime(nighttime: bool) -> void:
|
||||
if _is_nighttime == nighttime:
|
||||
return
|
||||
_is_nighttime = is_nighttime
|
||||
_is_nighttime = nighttime
|
||||
queue_redraw()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue