Fix questions and plugin.yml (#6)
This PR changes the questions as dicussed in Discord. It also fixes the `plugin.yml` now that it uses Gradle instead of Maven. Reviewed-on: #6 Reviewed-by: Joey Hines <joey@ahines.net> Co-authored-by: jolheiser <john.olheiser@gmail.com> Co-committed-by: jolheiser <john.olheiser@gmail.com>pull/7/head
parent
ee4d75baf4
commit
1a9de611fd
|
@ -5,10 +5,10 @@ import org.apache.commons.lang.StringUtils;
|
|||
public enum Question {
|
||||
|
||||
ONE("How old are you?", "Your answer must be numeric."),
|
||||
TWO("How do you typically enjoy playing Minecraft?", "Your answer must be under 300 characters long."),
|
||||
TWO("What's your favorite thing to do in Minecraft?", "Your answer must be under 300 characters long."),
|
||||
THREE1("Have you ever been banned? Please answer just 'yes' or 'no'.", "Your answer must be just 'yes' or 'no'."),
|
||||
THREE2("Oof. That's okay, it's happened to plenty of people. Do you mind letting us know why?", "Your answer must be under 300 characters long."),
|
||||
FOUR("Who referred you to the server?", "Your answer must be under 50 characters long."),
|
||||
FOUR("How did you find out about us? Please give a website or player name, if applicable.", "Your answer must be under 50 characters long."),
|
||||
FIVE("Last question! Have you read the rules thoroughly?", "Your answer must be under 10 characters long."),
|
||||
COMPLETE("All done! Staff should be reviewing your application any second now!", "");
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
name: ${name}
|
||||
version: ${version}
|
||||
description: ${description}
|
||||
author: ${author}
|
||||
website: ${url}
|
||||
main: ${mainClass}
|
||||
name: MinecraftManager
|
||||
version: 1.7
|
||||
description: A plugin used alongside the MinecraftManager Django project.
|
||||
author: EtzTech
|
||||
website: https://git.jojodev.com/Minecraft/MinecraftManagerPlugin
|
||||
main: xyz.etztech.minecraftmanager.MinecraftManager
|
||||
api-version: 1.16
|
||||
|
||||
commands:
|
||||
|
|
Loading…
Reference in New Issue