From b7e8ca7cb936acceda63ad30d1e1dcf22d071f09 Mon Sep 17 00:00:00 2001 From: Emik Date: Sat, 5 Apr 2025 20:03:02 +0200 Subject: [PATCH] Fix non-corrupted oxy --- manifest.json | 2 +- src/joker.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 7bca91e..9552a57 100644 --- a/manifest.json +++ b/manifest.json @@ -17,5 +17,5 @@ "conflicts": [ "Jen" ], - "version": "1.0.2" + "version": "1.0.3" } \ No newline at end of file diff --git a/src/joker.lua b/src/joker.lua index 7021021..bfe96ff 100644 --- a/src/joker.lua +++ b/src/joker.lua @@ -474,7 +474,7 @@ SMODS.Joker { if context.individual and context.cardarea == G.play and context.other_card.ability.name == "Steel Card" then - local amount = extra.is_corrupted and extra.corrupted_steel or extra.steel + local amount = extra.is_corrupted and extra.corrupted_steel or steel return {x_chips = amount, x_mult = amount, colour = G.C.PURPLE, card = card}, true end end,