Skip to content

Commit 71e4f96

Browse files
committed
Run Codex
1 parent ea67b92 commit 71e4f96

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

resources/ecs/about.ecs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
button ShowMeButton
88
button CodexButton
9+
module CodexModule
910
variable Script
1011
variable Item
1112
variable Codex
@@ -53,13 +54,13 @@ Start:
5354
attach CodexButton to `about-codex`
5455
on click CodexButton
5556
begin
56-
if module Codex is not running
57+
if CodexModule is not running
5758
begin
5859
require js `dist/plugins/codemirror.js`
5960
rest get Codex from `/resources/ecs/codex.ecs`
6061
send `hide` to parent
61-
run Codex
62+
run CodexModule
6263
end
63-
send `start` to Codex
64+
send `start` to CodexModule
6465
end
6566
stop

resources/ecs/main.ecs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ DoNotes:
277277
if Arg is empty stop
278278

279279
RunCodex:
280-
if module CodexModule is not running
280+
if CodexModule is not running
281281
begin
282282
require js `dist/plugins/codemirror.js`
283283
require js `dist/plugins/float.js`

0 commit comments

Comments
 (0)