fix: Corrected wether to whether

This commit is contained in:
Balloonpopper
2022-04-20 13:34:48 +10:00
committed by Julian Murgia
parent 3b47a93a9e
commit 584b81a496
17 changed files with 27 additions and 25 deletions

View File

@@ -15,7 +15,7 @@ var _dialog_player: Node = null
#
# #### Parameters
# - type: required type
# *Returns* Wether the type is supported or not
# *Returns* Whether the type is supported or not
func has_type(type: String) -> bool:
return true if type in ["floating", "avatar"] else false
@@ -25,7 +25,7 @@ func has_type(type: String) -> bool:
#
# #### Parameters
# - type: required chooser type
# *Returns* Wether the type is supported or not
# *Returns* Whether the type is supported or not
func has_chooser_type(type: String) -> bool:
return true if type == "simple" else false