PassTheMayo / minecraft-server-util

A Node.js library for Minecraft servers that can retrieve status, query, RCON, and send Votifier votes.
https://passthemayo.gitbook.io/minecraft-server-util/
MIT License
141 stars 24 forks source link

feat(RCON): new exec method #46

Closed tuxuuman closed 3 years ago

tuxuuman commented 3 years ago

New command execution method that expects the result of command execution.

Example:

//...
const output = await client.exec('list');
console.log(output);
PassTheMayo commented 3 years ago

This PR looks great! I'll go ahead and merge it.