1
0
forked from noxious/server

Added title to error notification

This commit is contained in:
Dennis Postma 2025-02-05 15:13:39 +01:00
parent a14074afcf
commit 9baffd1327

View File

@ -19,12 +19,12 @@ export default class MapCreateEvent extends BaseEvent {
this.logger.info(`GM ${(await this.getCharacter())!.getId()} has created a new map via map editor.`) this.logger.info(`GM ${(await this.getCharacter())!.getId()} has created a new map via map editor.`)
if (data.name === '') { if (data.name === '') {
this.socket.emit('notification', { message: 'Map name cannot be empty.' }) this.socket.emit('notification', { title: 'Error', message: 'Map name cannot be empty.' })
return callback(false) return callback(false)
} }
if (data.width < 1 || data.height < 1) { if (data.width < 1 || data.height < 1) {
this.socket.emit('notification', { message: 'Map width and height must be greater than 0.' }) this.socket.emit('notification', { title: 'Error', message: 'Map width and height must be greater than 0.' })
return callback(false) return callback(false)
} }