Skip to content

Commit

Permalink
Merge pull request CleverRaven#78253 from Procyonae/FixVitrificationE…
Browse files Browse the repository at this point in the history
…OCLoop

Fix EOC loop performance issue
  • Loading branch information
akrieger authored Nov 30, 2024
2 parents b53cf93 + 543a069 commit f3eb058
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"id": "EOC_vitrified_farm_entry_event",
"eoc_type": "EVENT",
"required_event": "avatar_enters_omt",
"condition": { "or": [ { "u_at_om_location": "unvitrified_farm_0" }, { "u_at_om_location": "unvitrified_orchard" } ] },
"effect": [ { "run_eocs": "EOC_vitrified_farm_init" } ]
},
{
Expand All @@ -48,7 +49,12 @@
},
"false_effect": [
{
"if": { "not": { "u_has_trait": "NOT_GLASS" } },
"if": {
"and": [
{ "not": { "u_has_trait": "NOT_GLASS" } },
{ "or": [ { "u_at_om_location": "unvitrified_farm_0" }, { "u_at_om_location": "unvitrified_orchard" } ] }
]
},
"then": { "run_eocs": [ "EOC_vitrified_farm_init" ], "time_in_future": "1 seconds" }
}
],
Expand Down

0 comments on commit f3eb058

Please sign in to comment.