mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-21 11:45:11 +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 = "maven-publish")
|
||||||
apply(plugin = "java-library")
|
apply(plugin = "java-library")
|
||||||
|
|
||||||
group = "com.badbones69.crazycrates"
|
group = "com.badbones69.crazyauctions"
|
||||||
description = "Create unlimited crates with multiple crate types to choose from!"
|
description = "Auction off items in style."
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven("https://repo.codemc.io/repository/maven-public")
|
maven("https://repo.codemc.io/repository/maven-public")
|
||||||
|
@ -2,9 +2,7 @@ org.gradle.jvmargs = -Xmx3G
|
|||||||
org.gradle.daemon = false
|
org.gradle.daemon = false
|
||||||
org.gradle.parallel = false
|
org.gradle.parallel = false
|
||||||
|
|
||||||
group = com.badbones69.crazyauctions
|
|
||||||
authors = ["Ryderbelserion, Badbones69"]
|
authors = ["Ryderbelserion, Badbones69"]
|
||||||
description = Auction off items in style.
|
|
||||||
website = https://modrinth.com/plugin/crazyauctions
|
website = https://modrinth.com/plugin/crazyauctions
|
||||||
sources = https://github.com/Crazy-Crew/CrazyAuctions
|
sources = https://github.com/Crazy-Crew/CrazyAuctions
|
||||||
issues = https://github.com/Crazy-Crew/CrazyAuctions/issues
|
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();
|
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();
|
new AuctionsMenu(player, ShopType.BID, Category.NONE, config.getString("Settings.GUIName", "N/A"), 54, 1).build();
|
||||||
} else {
|
} else {
|
||||||
player.sendMessage(Methods.getPrefix() + Methods.color("&cThe bidding and selling options are both disabled. Please contact the admin about this."));
|
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