This commit is contained in:
zianwangs 2025-06-19 04:10:12 -07:00 committed by GitHub
parent 36ae30160c
commit d6e98c21fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -65,7 +65,7 @@ jobs:
data/** data/**
sim/** sim/**
- name: Run selective lint & neccessary tests (if pull request) - name: Run selective lint & necessary tests (if pull request)
if: ${{ github.event_name == 'pull_request' }} if: ${{ github.event_name == 'pull_request' }}
run: npm run full-test-ci run: npm run full-test-ci
env: env:

View File

@ -500,7 +500,7 @@ exports.lastfmkey = '';
exports.chatlogreader = 'fs'; exports.chatlogreader = 'fs';
/** /**
* permissions and groups: * permissions and groups:
* Each entry in `grouplist` is a seperate group. Some of the members are "special" * Each entry in `grouplist` is a separate group. Some of the members are "special"
* while the rest is just a normal permission. * while the rest is just a normal permission.
* The order of the groups determines their ranking. * The order of the groups determines their ranking.
* The special members are as follows: * The special members are as follows:

View File

@ -190,7 +190,7 @@ end() [on weather, on field effect]
Return true to stop an effect from ending. Return true to stop an effect from ending.
Most ways an effect can end are "natural". The biggest exception is Most ways an effect can end are "natural". The biggest exception is
when a pokemon swiches out. In general, if you would receive a message when a pokemon switches out. In general, if you would receive a message
when the effect ends, the end event would be fired. when the effect ends, the end event would be fired.
NOTE: NOT fired when a pokemon switches out (see switchOut). NOTE: NOT fired when a pokemon switches out (see switchOut).

View File

@ -2690,7 +2690,7 @@ const mastermindCommands: Chat.ChatCommands = {
]; ];
return this.sendReplyBox( return this.sendReplyBox(
`<strong>Mastermind</strong> is a game in which each player tries to score as many points as possible in a timed round where only they can answer, ` + `<strong>Mastermind</strong> is a game in which each player tries to score as many points as possible in a timed round where only they can answer, ` +
`and the top X players advance to the finals, which is a timed game of Trivia in which only the first player to answer a question recieves points.` + `and the top X players advance to the finals, which is a timed game of Trivia in which only the first player to answer a question receives points.` +
`<details><summary><strong>Commands</strong></summary>${commandHelp.join('<br />')}</details>` `<details><summary><strong>Commands</strong></summary>${commandHelp.join('<br />')}</details>`
); );
}, },

View File

@ -101,7 +101,7 @@ describe('Team Validator', () => {
}); });
// Zamazenta is unreleased currently // Zamazenta is unreleased currently
it.skip('should tier Zacian and Zamazenta formes seperately', () => { it.skip('should tier Zacian and Zamazenta formes separately', () => {
team = [ team = [
{ species: 'zamazenta-crowned', ability: 'dauntlessshield', item: 'rustedshield', moves: ['howl'], evs: { hp: 1 } }, { species: 'zamazenta-crowned', ability: 'dauntlessshield', item: 'rustedshield', moves: ['howl'], evs: { hp: 1 } },
]; ];