fix(plugins) basic private server variable

This commit is contained in:
gh0sTedBuddy
2024-04-07 13:44:22 +01:00
parent ebda263852
commit a3c5a832b7
2 changed files with 6 additions and 2 deletions

View File

@@ -3,6 +3,10 @@ export default class BasePlugin {
constructor() {
}
_getServer() {
return this.#wetsock;
}
initialize(wetsock) {
this.#wetsock = wetsock;
}