diff --git a/play.pokemonshowdown.com/src/panel-popups.tsx b/play.pokemonshowdown.com/src/panel-popups.tsx index 173f37044..f742967de 100644 --- a/play.pokemonshowdown.com/src/panel-popups.tsx +++ b/play.pokemonshowdown.com/src/panel-popups.tsx @@ -1543,7 +1543,8 @@ class BattleOptionsPanel extends PSRoomPanel { override render() { const room = this.props.room; const battleRoom = this.getBattleRoom(); - + const isPlayer = !!battleRoom?.battle.myPokemon; + const canOfferTie = battleRoom && ((battleRoom.battle.turn >= 100 && isPlayer) || PS.user.group === '~'); return
{battleRoom && <>

In this battle

@@ -1629,7 +1630,12 @@ class BattleOptionsPanel extends PSRoomPanel { /> Open new battles in the right-side panel

} -

+

+ {} + {battleRoom && } +

; }