Skip to content

Commit

Permalink
2.0.1 有効なページがないイベントにメタタグを設定するとエラーになる不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
elleonard committed Jun 12, 2024
1 parent a88e0d0 commit 95641fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/codes/CharacterText/DarkPlasma_CharacterText.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function Game_Event_CharacterTextMixIn(gameEvent: Game_Event) {
};

gameEvent.requestSetupCharacterText = function () {
if (this.hasText()) {
if (this.hasText() && this.page()) {
const registerCommand = this.list()
.find(command => command.code === 357
&& Utils.extractFileName(command.parameters[0]) === pluginName
Expand Down
3 changes: 3 additions & 0 deletions src/codes/CharacterText/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ DarkPlasma_CharacterText:
year: 2023
license: MIT
histories:
- date: 2024/06/13
version: 2.0.1
description: '有効なページがないイベントにメタタグを設定するとエラーになる不具合を修正'
- date: 2024/04/21
version: 2.0.0
description: 'シーンが切り替わるとテキストが消える不具合を修正'
Expand Down

0 comments on commit 95641fa

Please sign in to comment.