Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
But I think there is a small bug when calculating the dominance for the amphibians. They start with three water elements but only two seem to be count with the the other animals.
I locally fixed this by making the following changes to the function "getAnimalElements":
if animal == ELEMENT_TO_SPECIES[element] then
table.insert(elements, element)
table.insert(elements, element)
if animal == TAG_AMPHIBIANS then
table.insert(elements, element)
end
end
Maybe you can fix this also in your public mod. Thank!