Skip to content

Commit

Permalink
fix: not redefining product price after applying discount coupon
Browse files Browse the repository at this point in the history
  • Loading branch information
warleysr committed Dec 30, 2023
1 parent 9deaae3 commit 8eb644c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: AutoPix
version: 1.0.16
version: 1.0.17
main: io.github.warleysr.autopix.AutoPix
author: warleysr
api-version: 1.13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public void onClick(InventoryClickEvent e) {

BUYING_MENU.put(e.getWhoClicked().getName(), menu);
BUYING_SLOT.put(e.getWhoClicked().getName(), e.getSlot());
DISCOUNT_PRICES.remove(e.getWhoClicked().getName());
InventoryManager.openConfirmation((Player) e.getWhoClicked());
}
else if (e.getView().getTitle().equals(InventoryManager.getConfirmTitle())) {
Expand Down

2 comments on commit 8eb644c

@gabishds
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Não estou conseguindo conectar ao database warley; tem alguma solução?

@warleysr
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gabishds Você comentou no commit. Pra eu conseguir te ajudar o que você precisa fazer é:

  • Abrir um novo Issue
  • Detalhar o que está acontecendo, somente "não estou conseguindo conectar" não ajuda muito. Descreva o problema, coloque logs de erros se houver, versão do Spigot, etc.
  • Coloque sua config ocultando informações confidenciais, como seu token do MP e os dados do banco de dados.

Please sign in to comment.