Skip to content

Commit

Permalink
Fix invalid key
Browse files Browse the repository at this point in the history
  • Loading branch information
Ukendio committed Sep 9, 2024
1 parent 08e46fb commit e234bd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .luaurc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"testkit": "testkit",
"mirror": "mirror",
},
languageMode: "strict"
"languageMode": "strict"
}
8 changes: 4 additions & 4 deletions demo/src/ReplicatedStorage/std/scheduler.luau
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export type Scheduler = {

phases: {
RenderStepped: Entity,
Heartbeat: Entity
Heartbeat: Entity,
},

phase: (after: Entity) -> Entity
Expand All @@ -50,9 +50,9 @@ local scheduler_new: (w: World, components: { [string]: Entity }) -> Scheduler


do
local world
local Disabled
local System
local world: World
local Disabled: Entity
local System: Entity<{}>
local DependsOn
local Phase
local Event
Expand Down

0 comments on commit e234bd8

Please sign in to comment.