diff --git a/squad-server/plugins/intervalled-broadcasts.js b/squad-server/plugins/intervalled-broadcasts.js index 71e5bf7..bb47f87 100644 --- a/squad-server/plugins/intervalled-broadcasts.js +++ b/squad-server/plugins/intervalled-broadcasts.js @@ -44,6 +44,6 @@ export default class IntervalledBroadcasts extends BasePlugin { async broadcast() { await this.server.rcon.broadcast(this.options.broadcasts[0]); - this.broadcasts.push(this.options.broadcasts.shift()); + this.options.broadcasts.push(this.options.broadcasts.shift()); } }