Fix nil showing up in joker description
This also reverts commit e6fdbd77bf.
This commit is contained in:
parent
e6fdbd77bf
commit
e86589960a
3 changed files with 4 additions and 4 deletions
|
|
@ -33,7 +33,7 @@ table_separator_style = none
|
||||||
trailing_table_separator = smart
|
trailing_table_separator = smart
|
||||||
|
|
||||||
# keep/remove/remove_table_only/remove_string_only
|
# keep/remove/remove_table_only/remove_string_only
|
||||||
call_arg_parentheses = remove
|
call_arg_parentheses = keep
|
||||||
|
|
||||||
detect_end_of_line = false
|
detect_end_of_line = false
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@
|
||||||
"conflicts": [
|
"conflicts": [
|
||||||
"Jen"
|
"Jen"
|
||||||
],
|
],
|
||||||
"version": "1.11.10"
|
"version": "1.11.11"
|
||||||
}
|
}
|
||||||
|
|
@ -181,8 +181,8 @@ local esc = SMODS.Joker {
|
||||||
loc_vars = function(_, _, card)
|
loc_vars = function(_, _, card)
|
||||||
local extra = card.ability.extra
|
local extra = card.ability.extra
|
||||||
|
|
||||||
local normal = Jane.sinister and "" or
|
local normal = Jane.sinister and {"", ""} or
|
||||||
pseudorandom_element(escapey_quotes.normal, pseudoseed "EscapeyQuotes") or ""
|
pseudorandom_element(escapey_quotes.normal, pseudoseed "EscapeyQuotes") or {"", ""}
|
||||||
|
|
||||||
local scared = not Jane.sinister and "" or
|
local scared = not Jane.sinister and "" or
|
||||||
pseudorandom_element(escapey_quotes.scared, pseudoseed "EscapeyQuotes") or ""
|
pseudorandom_element(escapey_quotes.scared, pseudoseed "EscapeyQuotes") or ""
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue