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
--Creates a Timer to shuffle the intruder bag if its contents change.
Timer.create({
identifier = 'shuffleCheckTimer',
function_name = 'shuffleCheck',
function_owner = self,
delay = 1,
repetitions = 0,
})
I did press "Save and play" after and got the message : " Error in Script (Global): chunk_3:(978,0-1): unexpected symbol near '-' "
The zone for contamination cards overlaps with the discard. You can save the game with nothing in the discards, reload and it should ID the contamination pile correctly. or change the code as I did the following:
Line 2159:
if contaminationDeckGUID == nil then
contaminationDeckGUID = getDeckGUID(contaminationDeckZoneGUID)
end
if contaminationDeck ~= nil then
Line 2179:
if contaminationDeckGUID ~= nil then
ideally with this code change the zone area should be reduced a little so there isn't a conflict in the first place.