Set faction_code: "neutral" on Treachery cards

This commit is contained in:
Adam Goldsmith 2022-12-05 12:05:21 -05:00
parent abd3eda48c
commit be0288f216

View File

@ -379,7 +379,10 @@ function build_card(component, pack_code, cycle_prefix, copies) {
)); ));
case "AHLCG-WeaknessTreachery-Default": case "AHLCG-WeaknessTreachery-Default":
return order_by_keys(Object.assign( return order_by_keys(Object.assign(
{ type_code: "treachery", }, {
type_code: "treachery",
faction_code: "neutral",
},
common_data(), common_data(),
treachery_subtype() treachery_subtype()
)); ));