finished.

This commit is contained in:
Brianna O'Keefe 2018-10-04 01:30:30 -04:00
parent 6383e161cd
commit 9466cbddc7
3 changed files with 90 additions and 1 deletions

88
.gitignore vendored
View File

@ -2,3 +2,91 @@
/.settings/ /.settings/
*.project *.project
*.classpath *.classpath
\.idea/EpicVouchers\.iml
\.idea/libraries/old\.xml
\.idea/libraries/spigot_1_13_1\.xml
\.idea/misc\.xml
\.idea/modules\.xml
\.idea/uiDesigner\.xml
\.idea/vcs\.xml
\.idea/workspace\.xml
target/classes/com/songoda/epicvouchers/command/AbstractCommand\.class
target/classes/com/songoda/epicvouchers/command/AbstractCommand\$ReturnType\.class
target/classes/com/songoda/epicvouchers/command/CommandManager\.class
target/classes/com/songoda/epicvouchers/command/commands/CommandEditor\.class
target/classes/com/songoda/epicvouchers/command/commands/CommandEpicVouchers\.class
target/classes/com/songoda/epicvouchers/command/commands/CommandForce\.class
target/classes/com/songoda/epicvouchers/command/commands/CommandGive\.class
target/classes/com/songoda/epicvouchers/command/commands/CommandList\.class
target/classes/com/songoda/epicvouchers/command/commands/CommandReload\.class
target/classes/com/songoda/epicvouchers/EpicVouchers\.class
target/classes/com/songoda/epicvouchers/events/ForceRedeemEvent\.class
target/classes/com/songoda/epicvouchers/events/VoucherReceiveEvent\.class
target/classes/com/songoda/epicvouchers/events/VoucherRedeemEvent\.class
target/classes/com/songoda/epicvouchers/handlers/Connections\.class
target/classes/com/songoda/epicvouchers/handlers/PreventHacks\.class
target/classes/com/songoda/epicvouchers/inventory/Confirmation\.class
target/classes/com/songoda/epicvouchers/inventory/VoucherEditor\.class
target/classes/com/songoda/epicvouchers/liberaries/Bountiful\.class
target/classes/com/songoda/epicvouchers/Locale\.class
target/classes/com/songoda/epicvouchers/References\.class
target/classes/com/songoda/epicvouchers/utils/ConfigWrapper\.class
target/classes/com/songoda/epicvouchers/utils/Debugger\.class
target/classes/com/songoda/epicvouchers/utils/Methods\.class
target/classes/com/songoda/epicvouchers/utils/ServerVersion\.class
target/classes/com/songoda/epicvouchers/utils/SettingsManager\.class
target/classes/com/songoda/epicvouchers/utils/SettingsManager\$settings\.class
target/classes/com/songoda/epicvouchers/utils/SoundUtils\.class
target/classes/com/songoda/epicvouchers/voucher/ClickListener\.class
target/classes/com/songoda/epicvouchers/voucher/Cooldowns\.class
target/classes/com/songoda/epicvouchers/voucher/Cooldowns\$1\.class
target/classes/com/songoda/epicvouchers/voucher/Voucher\.class
target/classes/com/songoda/epicvouchers/voucher/VoucherExecutor\.class
target/classes/com/songoda/epicvouchers/voucher/VoucherManager\.class
target/classes/en_US\.lang
target/classes/plugin\.yml
target/classes/vouchers\.yml

View File

@ -29,7 +29,7 @@ public class SettingsManager implements Listener {
DATABASE_SUPPORT("Database.Activate Mysql Support", false), DATABASE_SUPPORT("Database.Activate Mysql Support", false),
DATABASE_IP("Database.IP", "127.0.0.1"), DATABASE_IP("Database.IP", "127.0.0.1"),
DATABASE_PORT("Database.Port", 3306), DATABASE_PORT("Database.Port", 3306),
DATABASE_NAME("Database.Database Name", "EpicHoppers"), DATABASE_NAME("Database.Database Name", "EpicVouchers"),
DATABASE_USERNAME("Database.Username", "PUT_USERNAME_HERE"), DATABASE_USERNAME("Database.Username", "PUT_USERNAME_HERE"),
DATABASE_PASSWORD("Database.Password", "PUT_PASSWORD_HERE"), DATABASE_PASSWORD("Database.Password", "PUT_PASSWORD_HERE"),

View File

@ -25,6 +25,7 @@ interface.editvoucher.renamefinish = "&7Successfully renamed the voucher to &r%r
command.error.noplayer = "&7That user either does not exist or is not online"; command.error.noplayer = "&7That user either does not exist or is not online";
command.error.novoucher = "&cThat voucher does not exist."; command.error.novoucher = "&cThat voucher does not exist.";
command.error.notexist = "&7The command you entered does not exist or is spelt incorrectly."
command.error.notnumber = "&7Failed to parse that number into a valid amount." command.error.notnumber = "&7Failed to parse that number into a valid amount."
command.reload.success = "&7Config Reloaded" command.reload.success = "&7Config Reloaded"
command.give.send = "&7You have received the voucher &6%voucher% &7(&6x%amount%&7)." command.give.send = "&7You have received the voucher &6%voucher% &7(&6x%amount%&7)."