Skip to content

Commit

Permalink
Add a constant that marks Event AI safe to use with Event Generator. …
Browse files Browse the repository at this point in the history
…Set a date for v2.3.3 patch release.
  • Loading branch information
McKathlin committed Sep 23, 2024
1 parent 6d6a184 commit 4068a01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ A similar default script call finds the current map's ID:
**v2.3.2** - 11/29/2023
- Fixed a bug that was keeping Unset Sound Effect from working.

**v2.3.3** - Pending
**v2.3.3** - 9/23/2024
- Fixed a bug where player's action button failed to trigger Party Touch events.
- Fixed a bug where generated events could not remember their startLoc
(starting location).
Expand Down
6 changes: 4 additions & 2 deletions Tyruswoo_EventAI.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ Tyruswoo.EventAI = Tyruswoo.EventAI || {};
* v2.3.2 11/29/2023
* - Fixed a bug that was keeping Unset Sound Effect from working.
*
* v2.3.3 ??/??/2023
* v2.3.3 9/23/2024
* - Fixed a bug where the player's action button failed to trigger
* Party Touch events.
* - Fixed a bug where generated events could not remember their
Expand Down Expand Up @@ -988,6 +988,8 @@ Tyruswoo.EventAI = Tyruswoo.EventAI || {};
Tyruswoo.EventAI.PLUGIN_COMMAND_CODE = 357;
Tyruswoo.EventAI.PLUGIN_COMMAND_ARG_INDEX = 3;

Tyruswoo.EventAI.IS_EVENT_GENERATOR_SAFE = true;

// Default values for plugin command arguments.
const defaultLocation = {"x":"0","y":"0","relativity":"{\"mode\":\"Relative to Event\",\"eventId\":\"\",\"party_member\":\"\",\"orientational_shift\":\"\"}"};
const defaultLinkedRelativity = {"mode":"Relative to Event","eventId":"","party_member":"","orientational_shift":""};
Expand Down Expand Up @@ -3665,4 +3667,4 @@ Tyruswoo.EventAI = Tyruswoo.EventAI || {};
return mapObj;
};

})();
})();

0 comments on commit 4068a01

Please sign in to comment.