RakNet icon indicating copy to clipboard operation
RakNet copied to clipboard

Support other Motd/Advertisements

Open theaddonn opened this issue 1 year ago • 1 comments

The currently supported motd is the motd used by mojang, but other games might use another motd structure.

This could easily be added with a simple enum like:

enum Advertisement {
   MinecraftBedrock(McMotd),
   Other(String),
}

This would also allow other advertisements to be supported, from other games/applications.

theaddonn avatar Apr 27 '24 11:04 theaddonn

I like this idea, however I will more than likely isolate MCPE behind a feature flag like it is currently. I'm also not sure if I would do this with a enum, and i'd probably go more with a trait. I'll look into this.

john-bv avatar Apr 28 '24 19:04 john-bv