mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-23 17:17:31 -04:00
fix shadowing
This commit is contained in:
parent
ae43b04a25
commit
b09ebf0f10
1 changed files with 3 additions and 3 deletions
|
@ -15,9 +15,9 @@ func _ready() -> void:
|
||||||
func fill(prompt: Dictionary) -> void:
|
func fill(prompt: Dictionary) -> void:
|
||||||
if prompt == null: return
|
if prompt == null: return
|
||||||
|
|
||||||
var text: String = prompt["prompt"].to_lower()
|
var txt: String = prompt["prompt"].to_lower()
|
||||||
text = StringTools.to_alpha(text)
|
txt = StringTools.to_alpha(txt)
|
||||||
prompt_text.text = text
|
prompt_text.text = txt
|
||||||
|
|
||||||
|
|
||||||
func _on_button_pressed() -> void:
|
func _on_button_pressed() -> void:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue