Hello,
Sorry for the totally random question, but I have a question about one of the races I've added. The Abbizi are vent dwellers like the Orthin, but produce more food. (Abbizi are to Orthing like Threshers are to Phidi.)
I've noticed that the Abbizi do not produce food in Iceball worlds (including their home world). I know about farming.lua, where "Iceball=1" is set for the Abbizi just as with the Orthin. Is there another file where farming is controlled?
Thank you.
Farming on Iceball worlds
Re: Farming on Iceball worlds
You should only need it from there. When I changed spice mongers, the change went through from only that location.
Re: Farming on Iceball worlds
Ohhhh....
Sven, this is interesting.
From RACES.lua:
And so, logically, in farming.lua:
But, no!
The race name in farming.lua must start with a lower case letter. So, the fix that works is:
I remember checking this with Tacheed Tacheed because they can farm on arid world, and it worked. Now, I realize it works because:
and so
That would also explain why Chasm's test with the Spice Mongers (thank you) worked, and I repeated the test with Lummonx and Thresher. Those races are listed correctly.
I don't know how much it's actually used, but I guess I should update my race pack.
Sven, this is interesting.
From RACES.lua:
Code: Select all
name = "Abbizi",
And so, logically, in farming.lua:
Code: Select all
Abbizi = {(planets)},
But, no!
The race name in farming.lua must start with a lower case letter. So, the fix that works is:
Code: Select all
abbizi = {(planets)},
I remember checking this with Tacheed Tacheed because they can farm on arid world, and it worked. Now, I realize it works because:
Code: Select all
name = "Tacheed Tacheed",
race = 'tacheed_tacheed',
and so
Code: Select all
tacheed_tacheed ={(planets)},
That would also explain why Chasm's test with the Spice Mongers (thank you) worked, and I repeated the test with Lummonx and Thresher. Those races are listed correctly.
I don't know how much it's actually used, but I guess I should update my race pack.