Removed typed array indicator?

This commit is contained in:
JeremyStar™ 2024-05-15 21:32:50 +02:00
parent 0ed6f9ea85
commit c1c87476c0
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ Unregisters all CORE modules.
### `src/modules/splashes.gd`
#### *CoreBaseModule* <u>add_splash</u>(*String* <u>category</u>, *String* <u>splash</u>)
Adds a splash to the specified category.
#### *CoreBaseModule* <u>add_splashes</u>(*String* <u>category</u>, *Array[String]* <u>splashes</u>)
#### *CoreBaseModule* <u>add_splashes</u>(*String* <u>category</u>, *Array* <u>splashes</u>)
Adds an array of splashes to the specified category.
#### *CoreBaseModule* <u>copy_splashes</u>(*String* <u>source_category</u>, *String* <u>target_category</u>)
Copies all splashes from the source category to the target category.

View file

@ -133,7 +133,7 @@ func add_splash(category: String, splash: String) -> CoreBaseModule:
return self
## Adds an array of splashes to the specified category.
func add_splashes(category: String, splash_array: Array[String]) -> CoreBaseModule:
func add_splashes(category: String, splash_array: Array) -> CoreBaseModule:
for splash in splash_array:
add_splash(category, splash)