Skip to content

Commit

Permalink
refactor: rename update-clients to sync-clients (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Oct 31, 2024
1 parent 7db5b72 commit 0c58788
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/games/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default fp(
await app.register((await import('./plugins/match-event-listener')).default)
await app.register((await import('./plugins/match-event-handler')).default)
await app.register((await import('./plugins/game-log-collector')).default)
await app.register((await import('./plugins/update-clients')).default)
await app.register((await import('./plugins/sync-clients')).default)
await app.register((await import('./routes')).default)
},
{
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/queue/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default fp(
await app.register((await import('./plugins/gateway-listeners')).default)
await app.register((await import('./plugins/kick-disconnected-players')).default)
await app.register((await import('./plugins/auto-update-queue-state')).default)
await app.register((await import('./plugins/update-clients')).default)
await app.register((await import('./plugins/sync-clients')).default)
await app.register((await import('./plugins/auto-reset')).default)
await app.register((await import('./plugins/kick-replacement-players')).default)
await app.register((await import('./plugins/kick-banned-players')).default)
Expand Down
File renamed without changes.

0 comments on commit 0c58788

Please sign in to comment.