What went wrong? :/ Crash report

Following along with a tutorial to build a plugin and things have gone awry pretty quickly.

First step to test the basic build has led to crashing.

Stack trace: 26.05 04:50:12 [Server] Server thread/ERROR [FML]: The following problems were c - Pastebin.com

Class contents: package eager.dreamer.main;import com.google.inject.Inject;import org.slf4 - Pastebin.com

The plugin id has to be lowercase ^^

so:
@Plugin(id = "SpongeSkills", name = "Sponge Skills", version = "1.0.0")
needs to be:
@Plugin(id = "spongeskills", name = "Sponge Skills", version = "1.0.0")

The rest should be absolutely fine :smiley:

2 Likes

Aaaah excellent.
Clearly still wrapping my head around the different IDs and names and which cases are standard practice u.u