mirror of
https://github.com/EpicEricEE/ShopChest.git
synced 2024-11-08 11:50:14 +01:00
Fix another creative mode exploit
This commit is contained in:
parent
b090751d89
commit
2e31bbc2b5
@ -274,8 +274,11 @@ class ShopCommandExecutor implements CommandExecutor {
|
||||
return;
|
||||
}
|
||||
|
||||
ClickType.setPlayerClickType(p, new SelectClickType(p.getGameMode(), amount, buyPrice, sellPrice, shopType));
|
||||
p.setGameMode(GameMode.CREATIVE);
|
||||
if (!(ClickType.getPlayerClickType(p) instanceof SelectClickType)) {
|
||||
// Don't set previous game mode to creative if player already has select click type
|
||||
ClickType.setPlayerClickType(p, new SelectClickType(p.getGameMode(), amount, buyPrice, sellPrice, shopType));
|
||||
p.setGameMode(GameMode.CREATIVE);
|
||||
}
|
||||
|
||||
p.sendMessage(LanguageUtils.getMessage(Message.SELECT_ITEM));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user