Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
add intrustions to gui
Browse files Browse the repository at this point in the history
  • Loading branch information
HeathLoganCampbell committed Oct 17, 2019
1 parent d8a44df commit 9ea85dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/games/bevs/minecraftbut/gui/SenerarioMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ protected void drawSenerario(int slot, Senerario senerario)
new ItemStackBuilder(senerario.getIcon())
.displayName(CC.b + (senerario.isEnabled() ? CC.green : CC.red) + senerario.getName())
.lore(senerario.getDescription())
.addLore(CC.gray + "Id: " + senerario.getId()),
.addLore(CC.gray + "Id: " + senerario.getId())
.addLore(CC.gray + "Click to " + (senerario.isEnabled() ? "disable" : "enable")),
(player) -> {
if(senerario.isEnabled())
{
Expand Down

0 comments on commit 9ea85dc

Please sign in to comment.