From 7bdb3d5347fef622561a923597cb6288402c4b84 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Sun, 8 Oct 2023 10:52:17 +0200 Subject: [PATCH] victory display api bugfix --- src/core/VictoryDisplayApi.ttslua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/VictoryDisplayApi.ttslua b/src/core/VictoryDisplayApi.ttslua index e15d8813..32ee9878 100644 --- a/src/core/VictoryDisplayApi.ttslua +++ b/src/core/VictoryDisplayApi.ttslua @@ -16,7 +16,7 @@ do ---@param object Object Object that should be checked and potentially moved VictoryDisplayApi.placeCard = function(object) if object ~= nil and object.tag == "Card" then - getVictoryDisplay().call("getObjectByOwnerAndType", { owner = "Mythos", type = "VictoryDisplay" }).call("placeCard", object) + getVictoryDisplay().call("placeCard", object) end end