How do we check if plugins loaded

how do we check if plugins loaded

They show up in the mod list. But indeed a /plugins command is something we need :smile:.

You can also use the injected Logger to print something out during one of the server initialization events you’ve subscribed to:

	@Inject
	private Logger logger;

	@Subscribe
	public void onServerStarting(ServerStartingEvent event) {
		this.logger.info("Enabling plugin...");
	}

Like this? ;D

1 Like

Yeah like that lol. Sponge really needs some utility commands. It just can’t be that we will have to install a plugin for “/plugins”.

2 Likes

Yeah, and something about the plugins is that the provided way of gathering the plugin list takes in mods as well as Forge’s built in mods and even Minecraft itself.

2 Likes

if they can add /sponge plugin

will sponge have a /mods command since we are not using a plugins folder