Merge pull request #273 from argonui/discard-bugfix

Playermat: variable name corrected
This commit is contained in:
BootleggerFinn 2023-04-20 19:45:01 -05:00 committed by GitHub
commit 2dbb45e2e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -436,7 +436,7 @@ function doDiscardOne()
-- get a random non-hidden card (from the "choices" table) -- get a random non-hidden card (from the "choices" table)
local num = math.random(1, #choices) local num = math.random(1, #choices)
hand[choices[num]].setPosition(returnGlobalDiscardPosition()) hand[choices[num]].setPosition(returnGlobalDiscardPosition())
broadcastToAll(handColor .. " randomly discarded card " .. choices[num] .. "/" .. #hand .. ".", "White") broadcastToAll(playerColor .. " randomly discarded card " .. choices[num] .. "/" .. #hand .. ".", "White")
end end
end end