Merge pull request #305 from argonui/parallel-bugfix

updated ID range for parallel investigators
This commit is contained in:
Buhallin 2023-06-12 16:54:27 -07:00 committed by GitHub
commit 915a51d6c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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