You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -67,6 +67,7 @@ Lightweight packet-based scoreboard API for Bukkit plugins, compatible with all
67
67
68
68
> [!NOTE]
69
69
> When using Maven, make sure to build directly with Maven and not with your IDE configuration (on IntelliJ IDEA: in the `Maven` tab on the right, in `Lifecycle`, use `package`).
70
+
> The output jar file is located in the `target/` folder of your project.
70
71
71
72
### Gradle
72
73
@@ -97,7 +98,7 @@ Copy `FastBoardBase.java`, `FastBoard.java` and `FastReflection.java` in your pl
97
98
98
99
### Creating a scoreboard
99
100
100
-
Simply create a new `FastBoard` and update the title and the lines:
101
+
Create a new `FastBoard` and update the title and the lines:
101
102
102
103
```java
103
104
FastBoard board =newFastBoard(player);
@@ -210,7 +211,7 @@ Passing a `null` value as a score will result in a reset to the default blank fo
210
211
211
212
When using ViaBackwards on a post-1.13 server with pre-1.13 clients, older clients
212
213
may receive incomplete lines. To solve this problem, you can override the `hasLinesMaxLength()` method and return `true` for older clients.
0 commit comments