Commit Graph

23714 Commits

Author SHA1 Message Date
Tmi489
fe7fd29686 Removed "Pokemon" from all Custom Game formats (#5478) 2019-05-05 22:42:58 +09:30
Martin Chukwu
5fd1a5844a Gen 2 Random Battles: Removed illegal moves (#5473) 2019-05-05 01:33:09 +04:00
jetou
b2232aa96a Gen III-IV: Fix Knock Off/Rapid Spin interaction with Rough Skin (#5474) 2019-05-04 14:01:26 -04:00
Kirk Scheibelhut
10c744f733 Introduce an ID type to sim (#5468) 2019-05-04 13:13:12 +12:00
Marty-D
73a0a5efb3
UU: Add Mega Sableye suspect notice 2019-05-03 10:50:04 -04:00
Marty-D
28e9de9879 RU: Unban Mega Sceptile
https://www.smogon.com/forums/posts/8118368/
2019-05-02 13:54:11 -04:00
The Immortal
14a5a641d1
RU: Reban Sceptile-Mega 2019-05-02 20:14:48 +04:00
The Immortal
75a6a1375c
Update suspect test notices 2019-05-02 20:13:24 +04:00
The Immortal
7affe8a214 Ultimate Z: Ban Evasion Z-Moves 2019-05-02 01:33:07 +04:00
The Immortal
3ab08c8f01 Trademarked: Ban Parting Shot 2019-05-01 21:39:20 +04:00
The Immortal
029eb90822
Change OM rotational ladders 2019-05-01 18:30:57 +04:00
urkerab
508e58575e Other Metagames of the Month May 2019 (#5470) 2019-05-01 18:24:56 +04:00
The Immortal
d06ab79b21 Update RoA Spotlight 2019-05-01 12:37:18 +04:00
Kirk Scheibelhut
df3d9b91ef Battle toJSON/fromJSON (#5427) 2019-04-30 14:48:27 +12:00
JetOU
1669fde631 Fix bug in /msg (#5466) 2019-04-29 16:04:35 +12:00
Marty-D
3b3050258d
Datacenters: Add new ranges 2019-04-28 16:27:33 -04:00
Marty-D
d152a05c7e
NU: Allow Mega Camerupt
https://www.smogon.com/forums/posts/8114673/
2019-04-28 11:29:05 -04:00
Marty-D
1ee999ff0c Fix Toxic Spikes interaction with Steel/Poison types 2019-04-27 15:50:31 -04:00
Kirk Scheibelhut
e632bd1991 Fixes crash in gen3doubles due to missing target (#5465)
Fixes #5654
2019-04-26 19:47:38 -04:00
Kirk Scheibelhut
3a366d0499 Fix Gen 2 TOX -> PSN crash (#5463) 2019-04-26 09:21:11 -07:00
Marty-D
78cae4c5f3
STABmons: Allow a normally illegal Shiftry move combo 2019-04-26 11:02:06 -04:00
Marty-D
82f0f9c71b
DNSBL: Add some hostnames 2019-04-25 12:26:13 -04:00
The Immortal
07e72713e3
Mix and Mega LC: Ban Dratini 2019-04-25 00:32:13 +04:00
Bär Halberkamp
c2cd72521a Rename variable in /warn 2019-04-24 12:25:50 -04:00
Bär Halberkamp
6f0d639755 Fix a logic mistake in my previous commit 2019-04-23 20:33:15 -04:00
The Immortal
3bc47ea554 DPP NU: Unban Sand Veil 2019-04-24 03:02:23 +04:00
The Immortal
034b936219 Random Battle updates 2019-04-24 02:50:51 +04:00
whales
579dc632a3 Helptickets: Only prompt for info if ticket is inactive (#5461) 2019-04-23 17:16:40 -04:00
Bär Halberkamp
d0346b9090 Helptickets: don't send automated message when staff use blocked msgs 2019-04-23 17:14:01 -04:00
Bär Halberkamp
cf05bc158e Allow global warns on users that have disconnected
This is so staff can still log the ip and name for users who just logged off
2019-04-23 17:09:01 -04:00
Marty-D
75b92ab1dd
Fix Eject Button interaction with U-turn/Volt Switch 2019-04-23 16:50:05 -04:00
Marty-D
902d1e5ae1
Datacenters: Add new ranges 2019-04-23 13:49:45 -04:00
Kirk Scheibelhut
1adcd40e48 Windows-friendly Mocha setup
This reverts commit cccc904059.
2019-04-23 07:51:06 -07:00
Kirk Scheibelhut
cccc904059 Fix Mocha setup so that filtering works properly.
With `-i` in tests/mocha.opts, `npx mocha -g Foo` runs everything
*except* the tests you actually wanted to run (the `-g` overrides
the default `-g`, but unless you specify `--no-invert`, nothing will
override the default `-i`).

Having `test` not just be `mocha` is regrettable, but breaking `npx
mocha -g` or requiring users who want to filter remember to also
pass `--no-invert` is not a good tradeoff.
2019-04-22 21:52:46 -07:00
Guangcong Luo
d96bec3e43 Refactor Punishments.search
It used to have a really weird return signature. I've replaced it with
an array of search results, which should be easier to use and make more
sense.
2019-04-23 05:31:50 +09:30
Kirk Scheibelhut
7e4929a39f Change protocol for '|split' message type (#5331) (#5332) 2019-04-22 09:20:47 +09:30
Marty-D
5c222ae935
PU: Add Lilligant suspect notice 2019-04-21 19:26:20 -04:00
Marty-D
a14d20162a
RU: Add Mega Sceptile suspect notice 2019-04-21 19:25:30 -04:00
Jacob McLemore
5fffde1495 Gen II: Fix confusion interaction with self-destructing moves (#5460) 2019-04-21 19:20:30 -04:00
Guangcong Luo
17ebb805a4 Fix typechecking in punishments.js
It turns out the line `let Punishments = module.exports;` makes it into
`any`, and disables nearly all typechecking of anything to do with
`Punishments`. This refactor fixes that, and also fixes a bunch of flaws
newly caught by TypeScript.

I tried my best not to make any changes to actual functionality. These
changes should be effectively purely code cleanup.
2019-04-22 08:39:05 +09:30
Guangcong Luo
e33afd90a2 Rebuild on /updateserver rather than /hotpatch
Rebuilding on /updateserver is nicer than needing to do it individually
per hotpatch function, and also makes it apply to restarts (in case
you're manually launching `node server` instead of
`./pokemon-showdown`).
2019-04-21 20:51:38 +09:30
Marty-D
f3763dafe7
Formats: Update resource links
Thanks AlphaWittem!
2019-04-20 15:32:56 -04:00
JetOU
c9e1aba256 Allow Players to /exportinputlog (#5457) 2019-04-20 22:34:28 +09:30
whales
b8799b4ae6 Allow staff to hidetext themselves (#5452) 2019-04-20 21:48:16 +09:30
Marty-D
80619d62a5
Prevent multiple Eject Button activations from a single attack 2019-04-19 11:38:36 -04:00
Marty-D
9428d274cc Gen III: Improve Truant implementation 2019-04-17 16:36:25 -04:00
Kirk Scheibelhut
6fea91ee56 Split dev-tools/globals* into sim and server (#5450) 2019-04-18 04:17:54 +09:30
Kirk Scheibelhut
4975f1902b Move simulator harness to sim/tools (#5451) 2019-04-18 04:17:07 +09:30
Marty-D
970249ea17
NU: Update resource links 2019-04-17 12:00:46 -04:00
JetOU
19d561d76f Calculator: Support modulos (#5455) 2019-04-17 22:22:30 +09:30