Remove investigator card rotation handling from deck loader, since the spawner handles it now

This commit is contained in:
Buhallin 2022-11-13 23:56:29 -08:00
parent 258e8aec79
commit a516175177
No known key found for this signature in database
GPG Key ID: DB3C362823852294

View File

@ -129,9 +129,7 @@ end
function Zones.getDefaultCardRotation(playerColor, zone) function Zones.getDefaultCardRotation(playerColor, zone)
local deckRotation = getObjectFromGUID(playerMatGuids[playerColor]).getRotation() local deckRotation = getObjectFromGUID(playerMatGuids[playerColor]).getRotation()
if zone == "Investigator" then if zone == "Deck" then
deckRotation = deckRotation + Vector(0, 270, 0)
elseif zone == "Deck" then
deckRotation = deckRotation + Vector(0, 0, 180) deckRotation = deckRotation + Vector(0, 0, 180)
end end