Question [Tag Plugin] Feedback

Bochardi

New member
Mar 30, 2025
4
0
1
Hello everyone,

This is my first time ever making a plugin and first time ever really touching Java. With that being said I was wondering if any one could give any recommendations on my plugin, It is a simple tag plugin, this is not a release but rather me requesting constructive criticism to help me in my journey of writing good code, I know some areas may be sloppy, But i am still learning the overall Java and Minecraft plugin development as I was coding this. Anyways here is a link to the repo feedback will be appreciative, have a wonderful day.

 

mbaxter

Cat Wrangler
Staff member
Dec 14, 2021
102
23
17
18
over there
Some feedback:
  • Don't commit the target directory to your git repo.
  • You're building against 1.21.4 but have only 1.21 in plugin.yml's api-version. You can set it to '1.21.4'
  • Commands typically are lowercase. "Tag" is jarring, in that way. I don't think it really impacts anything, though.
  • Command class:
    • I think you mean to test for arg length being 0, not >1, for displaying help.
    • The established "Component message;" is strange. Just create the variable, when necessary, in the code and sometimes you don't even need to! Like, you could just do sendMessage(MiniMessage.deserialize(stuff))
  • and then I ran out of time :D
 

Bochardi

New member
Mar 30, 2025
4
0
1
Some feedback:
  • Don't commit the target directory to your git repo.
  • You're building against 1.21.4 but have only 1.21 in plugin.yml's api-version. You can set it to '1.21.4'
  • Commands typically are lowercase. "Tag" is jarring, in that way. I don't think it really impacts anything, though.
  • Command class:
    • I think you mean to test for arg length being 0, not >1, for displaying help.
    • The established "Component message;" is strange. Just create the variable, when necessary, in the code and sometimes you don't even need to! Like, you could just do sendMessage(MiniMessage.deserialize(stuff))
  • and then I ran out of time :D
Thank you so much for your feedback!
I really don't know what I was thinking for the plugin.yml command using uppercase lol.

Glad to hear from you :cool:
 

Leander

New member
Apr 1, 2025
2
0
1
You're using inconsistent formatting styles with your curly braces, sometimes on a newline, sometime on the same line. Just a nitpick tho :)
 

Bochardi

New member
Mar 30, 2025
4
0
1
You're using inconsistent formatting styles with your curly braces, sometimes on a newline, sometime on the same line. Just a nitpick tho :)
I see what you mean, I am still debating if i should use same line or new line? What do you prefer?

Just wanna make it so everyone can read it and understand it with no confusion, if there is a modern format style i should aim for let me know!
 

stefvanschie

Moderator
Staff member
Dec 17, 2021
139
7
27
28
With Java, K&R style (opening brace on the same line) is generally the most commonly used. If you don't care which style you use, I'd recommend sticking with that one, since other Java programmers will be more familiar with it.