From 913352bb0c0fdb30c35bdaea930a1bdcb47db132 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Mon, 29 Jul 2019 23:34:02 +0200 Subject: Replace arr[GetLength(arr)] with arr[] --- Items.c4d/Distributor.c4d/Script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Items.c4d/Distributor.c4d') diff --git a/Items.c4d/Distributor.c4d/Script.c b/Items.c4d/Distributor.c4d/Script.c index e46c33a..6ee7cf4 100644 --- a/Items.c4d/Distributor.c4d/Script.c +++ b/Items.c4d/Distributor.c4d/Script.c @@ -94,7 +94,7 @@ func GetRetrievableObjects(object requester, bool produce) { if(GetIndexOf(id, IDs) == -1) { - IDs[GetLength(IDs)] = id; + IDs[] = id; } } } -- cgit v1.2.3-54-g00ecf