Skip to content

Commit

Permalink
Merge pull request #76054 from SurFlurer/fix_imperfect_doll
Browse files Browse the repository at this point in the history
Prevent the imperfect doll being activated multiple times
  • Loading branch information
Maleclypse authored Aug 31, 2024
2 parents 0b709ec + 9415f67 commit 0c16bd0
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"type": "neutral",
"popup": true
},
{ "math": [ "u_vitri_glass_entered", "=", "1" ] }
{ "math": [ "u_vitri_glass_entered", "=", "1" ] },
{ "math": [ "u_back_from_vitri_glass", "=", "0" ] }
]
},
{
Expand Down Expand Up @@ -364,7 +365,11 @@
{
"type": "effect_on_condition",
"id": "EOC_queue_unvitrified_return",
"effect": { "queue_eocs": "EOC_unvitrified_return", "time_in_future": "1 seconds" }
"condition": { "math": [ "u_back_from_vitri_glass", "<", "1" ] },
"effect": [
{ "queue_eocs": "EOC_unvitrified_return", "time_in_future": "1 seconds" },
{ "math": [ "u_back_from_vitri_glass", "=", "1" ] }
]
},
{
"type": "effect_on_condition",
Expand Down

0 comments on commit 0c16bd0

Please sign in to comment.