Update ArkhamDb.ttslua with new parallel id range

This commit is contained in:
Entrox-Licher 2023-10-14 10:20:05 -04:00 committed by GitHub
parent a78095c582
commit 6dbf817e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,7 +198,7 @@ do
local altArt = { front = "normal", back = "normal" } local altArt = { front = "normal", back = "normal" }
-- translating front ID -- translating front ID
if altFrontId > 90000 and altFrontId < 90047 then if altFrontId > 90000 and altFrontId < 90050 then
altArt.front = "parallel" altArt.front = "parallel"
elseif altFrontId > 01500 and altFrontId < 01506 then elseif altFrontId > 01500 and altFrontId < 01506 then
altArt.front = "revised" altArt.front = "revised"
@ -207,7 +207,7 @@ do
end end
-- translating back ID -- translating back ID
if altBackId > 90000 and altBackId < 90047 then if altBackId > 90000 and altBackId < 90050 then
altArt.back = "parallel" altArt.back = "parallel"
elseif altBackId > 01500 and altBackId < 01506 then elseif altBackId > 01500 and altBackId < 01506 then
altArt.back = "revised" altArt.back = "revised"