修复祭风卧龙因体力流失而失去星报错的问题。
This commit is contained in:
parent
8c84806aff
commit
8d2df83edd
|
@ -7171,10 +7171,10 @@ game.import("mode", function (lib, game, ui, get, ai, _status) {
|
|||
return player.countCards("h") == 0;
|
||||
},
|
||||
x6: function (player, event) {
|
||||
return event.hasNature("fire");
|
||||
if(event.hasNature) return event.hasNature("fire");
|
||||
},
|
||||
x5: function (player, event) {
|
||||
return event.hasNature("thunder");
|
||||
if(event.hasNature) return event.hasNature("thunder");
|
||||
},
|
||||
x4: function (player, event) {
|
||||
return event.name == "loseHp";
|
||||
|
|
Loading…
Reference in New Issue