Improve CountdownHelper: optional messages, finishMessage, and boss bar color - #14
Merged
Merged
Conversation
…ge placeholders Agent-Logs-Url: https://github.com/Trilleo/PaperExamplePlugin/sessions/14d2063c-1ba4-43a4-8216-aae34af88dd1 Co-authored-by: Trilleo <133519132+Trilleo@users.noreply.github.com>
… CountdownHelper Agent-Logs-Url: https://github.com/Trilleo/PaperExamplePlugin/sessions/e18a680c-4f95-4f84-8106-9404d94e82b1 Co-authored-by: Trilleo <133519132+Trilleo@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
Trilleo
April 22, 2026 02:31
View session
Trilleo
marked this pull request as ready for review
April 22, 2026 02:31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CountdownHelperlacked a finish-state message, forced callers to always provide a message string, and hardcoded the boss bar color to blue.Changes
start()signaturemessage: String? = null— per-tick display is skipped when omittedfinishMessage: String? = null— shown viadisplayLocationat countdown end (replaces the would-be0stick); omit to suppressbossBarColor: BossBar.Color = BossBar.Color.BLUE— controls boss bar color whendisplayLocation == BOSS_BARsoundandfinishSoundnow default tonull; no need to pass them explicitly for silencedisplayLocationmoved before the optional parameters for a cleaner call-site read orderInternal
showMessage()helper — eliminates duplication between the per-tick and finish display pathsExample