diff --git a/play.pokemonshowdown.com/src/client-main.ts b/play.pokemonshowdown.com/src/client-main.ts index ced0867a9..f4caf7de5 100644 --- a/play.pokemonshowdown.com/src/client-main.ts +++ b/play.pokemonshowdown.com/src/client-main.ts @@ -2489,6 +2489,10 @@ export const PS = new class extends PSModel { } } if (options.id.startsWith('battle-') && PS.prefs.rightpanelbattles) options.location = 'right'; + if (options.id.startsWith('help-')) { + options.location = 'right'; + options.type = 'chat'; + } options.parentRoomid ??= this.getRoom(options.parentElem)?.id; const parentRoom = options.parentRoomid ? this.rooms[options.parentRoomid] : null; let preexistingRoom = this.rooms[options.id];