mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
* Add AdminCommand.updateServerMessage * Add AdminCommand.shutdownServer * Add AdminCommand.reloadConfig * Cleanup * Add AdminCommand.adjustMod * Lint * Lint
17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
export class AdminPersistence {
|
|
static adjustMod(userName: string, shouldBeMod: boolean, shouldBeJudge: boolean) {
|
|
console.log('adjustMod');
|
|
}
|
|
|
|
static reloadConfig() {
|
|
console.log('reloadConfig');
|
|
}
|
|
|
|
static shutdownServer() {
|
|
console.log('shutdownServer');
|
|
}
|
|
|
|
static updateServerMessage() {
|
|
console.log('updateServerMessage');
|
|
}
|
|
}
|