Skip to content

Commit c5de32f

Browse files
committed
Merge remote-tracking branch 'origin/documentation' into documentation
2 parents 48c23a9 + 9e56f6e commit c5de32f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v1
1515
- uses: actions/setup-node@v1
1616
with:
17-
node-version: '12.x'
17+
node-version: '14.x'
1818
- name: Test Build
1919
run: |
2020
if [ -e yarn.lock ]; then
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v1
3333
- uses: actions/setup-node@v1
3434
with:
35-
node-version: '12.x'
35+
node-version: '14.x'
3636
- uses: webfactory/ssh-agent@v0.5.0
3737
with:
3838
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}

docs/murdermystery/development/developer-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ The event is called when a player is trying to leave an arena.
9797
>
9898
> **event\#getArena\(\)** - returns existing arena what player is attempting to leave
9999
100-
### **MMGameEndEvent**
100+
### **MMGameStopEvent**
101101

102102
The event is called when a game has ended.
103103

104104
**Example:**
105105

106106
```js
107107
@EventHandler
108-
public void onGameStop(MMGameEndEvent event){
108+
public void onGameStop(MMGameStopEvent event){
109109
for(Player p : event.getArena().getPlayers()){
110110
p.sendMessage("Cool game? Maybe play again?");
111111
}

0 commit comments

Comments
 (0)