Troller0001
I've anxiously awaited your arrival!
Ah, thanks for the explanation and shared thread! (turns out I "only" forgot to add the squared brackets and kept wondering why it didn't have the correct syntax >.<)
Though I'm still confused about one thing:
Why does this work (in this specific case):
but this doesn't?
EDIT: or does it both work and am I just misunderstanding you? :/ If so, why did you choose to define it like the first block of code in this post?
Though I'm still confused about one thing:
Why does this work (in this specific case):
Code:
local tValidFasilGhebbiUnitDomains = { [GameInfoTypes.DOMAIN_LAND] = GameInfoTypes.DOMAIN_LAND, [GameInfoTypes.DOMAIN_SEA] = GameInfoTypes.DOMAIN_SEA }
but this doesn't?
Code:
iUnitDomains = { [GameInfoTypes.DOMAIN_LAND] = true, [GameInfoTypes.DOMAIN_SEA] = true }
EDIT: or does it both work and am I just misunderstanding you? :/ If so, why did you choose to define it like the first block of code in this post?