Skip to content

Commit bbd4e9b

Browse files
fix more color crashes
1 parent 25d00ce commit bbd4e9b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

items/epic.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ local caramel = {
13121312
card.ability.extra.rounds_remaining = lenient_bignum(to_big(card.ability.extra.rounds_remaining) - 1)
13131313
if to_big(card.ability.extra.rounds_remaining) > to_big(0) then
13141314
return {
1315-
message = { localize("cry_minus_round") },
1315+
message = localize("cry_minus_round"),
13161316
colour = G.C.FILTER,
13171317
}
13181318
else

items/m.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ local foodm = {
261261
card.ability.extra.rounds_remaining = lenient_bignum(to_big(card.ability.extra.rounds_remaining) - 1)
262262
if to_big(card.ability.extra.rounds_remaining) > to_big(0) then
263263
return {
264-
message = { localize("cry_minus_round") },
264+
message = localize("cry_minus_round"),
265265
colour = G.C.FILTER,
266266
}
267267
else

items/spooky.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ local wrapped = {
6767
card.ability.extra.rounds = card.ability.extra.rounds - 1
6868
if card.ability.extra.rounds > 0 then
6969
return {
70-
message = { localize("cry_minus_round") },
70+
message = localize("cry_minus_round"),
7171
colour = G.C.FILTER,
7272
}
7373
else
@@ -1516,7 +1516,7 @@ local candy_cane = {
15161516
card.ability.extra.rounds = lenient_bignum(to_big(card.ability.extra.rounds) - 1)
15171517
if to_big(card.ability.extra.rounds) > to_big(0) then
15181518
return {
1519-
message = { localize("cry_minus_round") },
1519+
message = localize("cry_minus_round"),
15201520
colour = G.C.FILTER,
15211521
}
15221522
else

0 commit comments

Comments
 (0)