mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-13 10:33:55 +01:00
a little bit of clean up
This commit is contained in:
parent
6e494e04c6
commit
30ada8a071
@ -15,8 +15,8 @@ subprojects {
|
||||
apply(plugin = "maven-publish")
|
||||
apply(plugin = "java-library")
|
||||
|
||||
group = "com.badbones69.crazycrates"
|
||||
description = "Create unlimited crates with multiple crate types to choose from!"
|
||||
group = "com.badbones69.crazyauctions"
|
||||
description = "Auction off items in style."
|
||||
|
||||
repositories {
|
||||
maven("https://repo.codemc.io/repository/maven-public")
|
||||
|
@ -2,9 +2,7 @@ org.gradle.jvmargs = -Xmx3G
|
||||
org.gradle.daemon = false
|
||||
org.gradle.parallel = false
|
||||
|
||||
group = com.badbones69.crazyauctions
|
||||
authors = ["Ryderbelserion, Badbones69"]
|
||||
description = Auction off items in style.
|
||||
website = https://modrinth.com/plugin/crazyauctions
|
||||
sources = https://github.com/Crazy-Crew/CrazyAuctions
|
||||
issues = https://github.com/Crazy-Crew/CrazyAuctions/issues
|
@ -58,9 +58,9 @@ public class AuctionCommand implements CommandExecutor {
|
||||
}
|
||||
}
|
||||
|
||||
if (crazyManager.isSellingEnabled()) {
|
||||
if (this.crazyManager.isSellingEnabled()) {
|
||||
new AuctionsMenu(player, ShopType.SELL, Category.NONE, config.getString("Settings.GUIName", "N/A"), 54, 1).build();
|
||||
} else if (crazyManager.isBiddingEnabled()) {
|
||||
} else if (this.crazyManager.isBiddingEnabled()) {
|
||||
new AuctionsMenu(player, ShopType.BID, Category.NONE, config.getString("Settings.GUIName", "N/A"), 54, 1).build();
|
||||
} else {
|
||||
player.sendMessage(Methods.getPrefix() + Methods.color("&cThe bidding and selling options are both disabled. Please contact the admin about this."));
|
||||
|
Loading…
Reference in New Issue
Block a user