knowyt/_client/src/plugins/engine/deletePlayer.js

9 lines
182 B
JavaScript

export default async function(player) {
const { store } = this.context
await this.callApi('/api/deletePlayer', {
g: store.state.engine.user?.game,
id: player.id,
})
}