修复祭风卧龙因体力流失而失去星报错的问题。

This commit is contained in:
ZiG60020405 2024-06-02 16:56:22 +08:00 committed by GitHub
parent 8c84806aff
commit 8d2df83edd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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";