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
@@ -210,10 +210,10 @@ public void resetTimersExample(Player viewer) {
210
210
.hideWhenStopped(false)
211
211
```
212
212
213
-
`.customFormat(String)` is a format string (e.g. `"mm:ss"`). Uses the default display format if not provided.
213
+
`.displayFormat(String)` is a format string (e.g. `"mm:ss"`). Uses the default display format if not provided.
214
214
215
215
```java
216
-
.customFormat("mm:ss")
216
+
.displayFormat("mm:ss")
217
217
```
218
218
219
219
`.textColor(java.awt.Color)` is the text color. Defaults to white if not provided. See the [colors page](/apollo/developers/utilities/colors) for more.
@@ -266,10 +266,10 @@ public void resetTimersExample(Player viewer) {
266
266
.hideWhenStopped(false)
267
267
```
268
268
269
-
`.customFormat(String)` is a format string. Uses the default display format if not provided.
269
+
`.displayFormat(String)` is a format string. Uses the default display format if not provided.
270
270
271
271
```java
272
-
.customFormat("mm:ss")
272
+
.displayFormat("mm:ss")
273
273
```
274
274
275
275
`.titleText(Component)` is the on-screen title shown when the timer finishes. Set to `null` or omit to skip. See the [chat components](https://docs.advntr.dev/text.html) page for more.
@@ -278,10 +278,10 @@ public void resetTimersExample(Player viewer) {
`.ingameNotification(boolean)` determines whether to show an in-game popup when the timer finishes.
281
+
`.inGameNotification(boolean)` determines whether to show an in-game popup when the timer finishes.
282
282
283
283
```java
284
-
.ingameNotification(true)
284
+
.inGameNotification(true)
285
285
```
286
286
287
287
`.textColor(java.awt.Color)` is the text color. Defaults to white if not provided. See the [colors page](/apollo/developers/utilities/colors) for more.
0 commit comments