diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2019-07-29 23:34:02 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2019-07-30 00:13:56 +0200 |
| commit | 913352bb0c0fdb30c35bdaea930a1bdcb47db132 (patch) | |
| tree | 9b86a7bc95086e273626b8493057a9e8e8d635e9 /Items.c4d/Distributor.c4d | |
| parent | e09caf6412be5d14ec948bc2d8630fa946bd5b88 (diff) | |
| download | DTTubeMail.c4d-913352bb0c0fdb30c35bdaea930a1bdcb47db132.tar.gz DTTubeMail.c4d-913352bb0c0fdb30c35bdaea930a1bdcb47db132.zip | |
Replace arr[GetLength(arr)] with arr[]
Diffstat (limited to 'Items.c4d/Distributor.c4d')
| -rw-r--r-- | Items.c4d/Distributor.c4d/Script.c | 2 |
1 files changed, 1 insertions, 1 deletions
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;
}
}
}
|
