File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/main/java/org/maxgamer/quickshop Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5454import org .maxgamer .quickshop .api .database .DatabaseHelper ;
5555import org .maxgamer .quickshop .api .economy .AbstractEconomy ;
5656import org .maxgamer .quickshop .api .economy .EconomyType ;
57- import org .maxgamer .quickshop .api .event .QSReloadEvent ;
57+ import org .maxgamer .quickshop .api .event .QSConfigurationReloadEvent ;
5858import org .maxgamer .quickshop .api .integration .IntegrateStage ;
5959import org .maxgamer .quickshop .api .integration .IntegrationManager ;
6060import org .maxgamer .quickshop .api .localization .text .TextManager ;
@@ -572,7 +572,7 @@ public void reloadConfiguration() {
572572 } else {
573573 logWatcher = null ;
574574 }
575- Bukkit .getPluginManager ().callEvent (new QSReloadEvent (this ));
575+ Bukkit .getPluginManager ().callEvent (new QSConfigurationReloadEvent (this ));
576576 }
577577
578578 /**
@@ -965,7 +965,7 @@ public void run() {
965965 }
966966 }.runTask (this );
967967 if (loaded ) {
968- getServer ().getPluginManager ().callEvent (new QSReloadEvent (this ));
968+ getServer ().getPluginManager ().callEvent (new QSConfigurationReloadEvent (this ));
969969 } else {
970970 loaded = true ;
971971 }
Original file line number Diff line number Diff line change 11/*
2- * This file is a part of project QuickShop, the name is QSReloadEvent .java
2+ * This file is a part of project QuickShop, the name is QSConfigurationReloadEvent .java
33 * Copyright (C) PotatoCraft Studio and contributors
44 *
55 * This program is free software: you can redistribute it and/or modify it
2121
2222import org .maxgamer .quickshop .QuickShop ;
2323
24- public class QSReloadEvent extends AbstractQSEvent {
24+ public class QSConfigurationReloadEvent extends AbstractQSEvent {
2525
2626 private final QuickShop instance ;
2727
@@ -30,7 +30,7 @@ public class QSReloadEvent extends AbstractQSEvent {
3030 *
3131 * @param instance Quickshop instance
3232 */
33- public QSReloadEvent (QuickShop instance ) {
33+ public QSConfigurationReloadEvent (QuickShop instance ) {
3434 this .instance = instance ;
3535 }
3636
You can’t perform that action at this time.
0 commit comments