fix elena fuente duello/indiani
This commit is contained in:
parent
a8ffa008af
commit
6922470fea
@ -276,7 +276,8 @@ export default {
|
|||||||
is_equipment: true,
|
is_equipment: true,
|
||||||
noDesc: true,
|
noDesc: true,
|
||||||
}]
|
}]
|
||||||
this.hand.filter(x => (x.can_be_used_now && this.expected_response.indexOf(x.name) !== -1) || this.character.name === "Elena Fuente").forEach(x=>{
|
let expectedBangResponse = this.expected_response.indexOf('Bang!') !== -1
|
||||||
|
this.hand.filter(x => (x.can_be_used_now && this.expected_response.indexOf(x.name) !== -1) || (this.character.name === "Elena Fuente" && !expectedBangResponse)).forEach(x=>{
|
||||||
cc.push(x)
|
cc.push(x)
|
||||||
})
|
})
|
||||||
this.equipment.filter(x => x.usable_next_turn && x.can_be_used_now && this.expected_response.indexOf(x.name) !== -1).forEach(x=>{
|
this.equipment.filter(x => x.usable_next_turn && x.can_be_used_now && this.expected_response.indexOf(x.name) !== -1).forEach(x=>{
|
||||||
|
Loading…
Reference in New Issue
Block a user