dumptruckman
08/09/2017, 4:49 PMabstract class Game<SELF : Game<SELF, T>, T : Plugin>
and a property in that class val players: PlayerList<SELF>
which is defined as abstract class PlayerList<G : Game<G, Plugin>>
. However, it tells me that PlayerList is expecting Game<SELF, T>
and found SELF