@@ -419,7 +419,7 @@ export const command: PSCommand[] = Object.entries(Games).map(([_gameId, Game]):
419419 name : 'menu' ,
420420 aliases : [ 'm' , 'list' ] ,
421421 help : 'Displays active games.' ,
422- perms : Symbol . for ( 'games.manage ' ) ,
422+ perms : Symbol . for ( 'games.create ' ) ,
423423 syntax : 'CMD' ,
424424 async run ( { message, broadcastHTML } ) {
425425 const regHTML = renderMenu ( message . target , Game . meta , false ) ;
@@ -433,7 +433,7 @@ export const command: PSCommand[] = Object.entries(Games).map(([_gameId, Game]):
433433 name : 'stash' ,
434434 aliases : [ 'yeet' ] ,
435435 help : 'Stashes a game to store it for later.' ,
436- perms : Symbol . for ( 'games.manage ' ) ,
436+ perms : Symbol . for ( 'games.create ' ) ,
437437 syntax : 'CMD [game ref]' ,
438438 async run ( { message, arg, $T } ) {
439439 const { game } = getGame ( arg , { action : 'any' } , { room : message . target , $T } ) ;
@@ -449,7 +449,7 @@ export const command: PSCommand[] = Object.entries(Games).map(([_gameId, Game]):
449449 name : 'backups' ,
450450 aliases : [ 'bu' , 'b' ] ,
451451 help : 'Shows a list of currently available backups.' ,
452- perms : Symbol . for ( 'games.manage ' ) ,
452+ perms : Symbol . for ( 'games.create ' ) ,
453453 syntax : 'CMD' ,
454454 async run ( { message } ) {
455455 const HTML = renderBackups ( message . target , Game . meta ) ;
@@ -460,7 +460,7 @@ export const command: PSCommand[] = Object.entries(Games).map(([_gameId, Game]):
460460 name : 'restore' ,
461461 aliases : [ 'r' , 'unstash' , 'unyeet' ] ,
462462 help : 'Restores a game from stash/backups.' ,
463- perms : Symbol . for ( 'games.manage ' ) ,
463+ perms : Symbol . for ( 'games.create ' ) ,
464464 syntax : 'CMD [id]' ,
465465 async run ( { message, arg, $T } ) {
466466 const id = arg . trim ( ) . toUpperCase ( ) ;
0 commit comments