Skip to content

Commit

Permalink
Fix warp messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
vLuckyyy committed Jan 19, 2025
1 parent 2035c0a commit f9c5fe6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
import java.util.List;
import java.util.Map;
import lombok.Getter;
import lombok.experimental.Accessors;
import net.dzikoysk.cdn.entity.Contextual;
import net.dzikoysk.cdn.entity.Description;
import org.bukkit.Material;

@Getter
@Accessors(fluent = true)
@Contextual
public class ENWarpMessages implements WarpMessages {
@Description("# {WARP} - Warp name")
Expand Down Expand Up @@ -44,6 +46,7 @@ public class ENWarpMessages implements WarpMessages {
public ENWarpInventory warpInventory = new ENWarpInventory();

@Getter
@Accessors(fluent = true)
@Contextual
public static class ENWarpInventory implements WarpInventorySection {
public String title = "<dark_gray>» <green>Available warps:";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
import java.util.List;
import java.util.Map;
import lombok.Getter;
import lombok.experimental.Accessors;
import net.dzikoysk.cdn.entity.Contextual;
import net.dzikoysk.cdn.entity.Description;
import org.bukkit.Material;

@Getter
@Accessors(fluent = true)
@Contextual
public class PLWarpMessages implements WarpMessages {
@Description("# {WARP} - Nazwa warpu")
Expand Down Expand Up @@ -42,6 +44,7 @@ public class PLWarpMessages implements WarpMessages {
public PLWarpInventory warpInventory = new PLWarpInventory();

@Getter
@Accessors(fluent = true)
@Contextual
public static class PLWarpInventory implements WarpInventorySection {
public String title = "<dark_gray>» <green>Lista dostępnych warpów";
Expand Down

0 comments on commit f9c5fe6

Please sign in to comment.