mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-06 05:27:54 -05:00
- /static/custom.css is now located at /config/custom.css - /static/avatars/ is now located at /config/avatars/ - The redirect script now redirects all room URIs, not just the root path. For example, if you are running a server on localhost port 8000, visiting http://localhost:8000/teambuilder will now take you to the teambuilder. This works for any room.
8 lines
396 B
HTML
8 lines
396 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var suffix = (document.location.port != '8000' ? '-' + (document.location.port || '80') : '');
|
|
document.location.replace('http://' + document.location.hostname + suffix + '.psim.us' + document.location.pathname);
|
|
</script>
|
|
<p>This is a <a href="http://www.pokemonshowdown.com">Pokemon Showdown</a> server!</p>
|
|
<noscript><p>Try enabling JavaScript to play!</p></noscript>
|