diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-07-25 21:05:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 21:05:42 +0200 |
commit | a931052c791d8ca965bd40e854f41885ac54e38a (patch) | |
tree | 9eec31cac307661ebc36bc72ad71e2a3464c60d9 /modules/gdscript/gd_tokenizer.cpp | |
parent | e4fe194fe5fab49421c26dc26f4b8fc996a39e1e (diff) | |
parent | 72436956ddcdfdcb9edea5c447363391c23552c4 (diff) | |
download | redot-engine-a931052c791d8ca965bd40e854f41885ac54e38a.tar.gz |
Merge pull request #9731 from Xrayez/gdscript-completion
Update GDScript completion names for Pool*Arrays
Diffstat (limited to 'modules/gdscript/gd_tokenizer.cpp')
-rw-r--r-- | modules/gdscript/gd_tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_tokenizer.cpp b/modules/gdscript/gd_tokenizer.cpp index 01e3835494..5803046185 100644 --- a/modules/gdscript/gd_tokenizer.cpp +++ b/modules/gdscript/gd_tokenizer.cpp @@ -159,7 +159,7 @@ static const _bit _type_list[] = { { Variant::ARRAY, "Array" }, { Variant::POOL_BYTE_ARRAY, "PoolByteArray" }, { Variant::POOL_INT_ARRAY, "PoolIntArray" }, - { Variant::POOL_REAL_ARRAY, "PoolFloatArray" }, + { Variant::POOL_REAL_ARRAY, "PoolRealArray" }, { Variant::POOL_STRING_ARRAY, "PoolStringArray" }, { Variant::POOL_VECTOR2_ARRAY, "PoolVector2Array" }, { Variant::POOL_VECTOR3_ARRAY, "PoolVector3Array" }, |