forked from noxious/server
Renamed zone > map
This commit is contained in:
12
src/commands/listMaps.ts
Normal file
12
src/commands/listMaps.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { Server } from 'socket.io'
|
||||
|
||||
import { BaseCommand } from '#application/base/baseCommand'
|
||||
import MapManager from '#managers/mapManager'
|
||||
|
||||
type CommandInput = string[]
|
||||
|
||||
export default class ListMapsCommand extends BaseCommand {
|
||||
public execute(input: CommandInput): void {
|
||||
console.log(MapManager.getLoadedMaps())
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user