Skip to content

Commit

Permalink
Fix forceplay sanctified boolean mix up
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Feb 22, 2021
1 parent 9361aaa commit d93da24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rs/src/skill.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1924,7 +1924,7 @@ impl Skill {
Self::forceplay => {
let town = ctx.get_owner(t);
let tgting = if ctx.get_kind(t) == etg::Spell {
if !ctx.sanctified(town) {
if ctx.sanctified(town) {
return;
}
let card = ctx.get_card(ctx.get(t, Stat::card));
Expand Down

0 comments on commit d93da24

Please sign in to comment.