Changes to client class are completely unnecessary if you use the track all method in your plugin, otherwise great work!
Code:
private tracker: any;
constructor(){
PluginManager.afterInit(() => {
this.tracker = PluginManager.getInstanceOf(PlayerTracker);
this.tracker.trackAllPlayers(); // <--- One less file to mess with for one small line of code :P
});
}
