Skip to content

Commit

Permalink
[misspell] Missing letters; Description improvements
Browse files Browse the repository at this point in the history
- misspellings - missing letters
- improved some descriptions NeunEinser#5
  • Loading branch information
Kri5t0fK committed Feb 18, 2022
1 parent 04dd707 commit 9818616
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
18 changes: 10 additions & 8 deletions data/bingo/functions/init/init.mcfunction
Original file line number Diff line number Diff line change
Expand Up @@ -791,8 +791,8 @@
scoreboard objectives add bingo.id dummy

#>
# This objective stores the page of a paginated tellraw a player is currently
# at.
# This objective stores the page number of a paginated tellraw
# a player is currently at.
#
# This is for example used for the preferences menu. It would otherwise be
# impossible to display a generated list with clickable items, as the score
Expand All @@ -819,14 +819,14 @@
#region private objectives
#>
# This objective is used to store the player's position hash, which in turn
# is used to determine wether the player position display needs updating
# is used to determine whether the player position display needs updating
# @within
# function bingo:init/init
# function bingo:custom_hud/components/player_position/*
scoreboard objectives add bingo.pos_hash dummy

#>
# The last time the hud was refeshed for each player
# The last time the hud was refreshed for each player
# #TODO rename to something like "last_hud_update" in 1.18 when the stupid
# # length limit is gone.
#
Expand All @@ -848,6 +848,8 @@

#region score holders
#>
# Whether command blocks are enabled
#
# @internal
#declare score_holder $commandblocks_enabled
scoreboard players set $commandblocks_enabled bingo.state 0
Expand All @@ -857,7 +859,7 @@
#>
# The current game state
# 0 = Lobby / Not in game
# 1 = Starting / chunk-gen
# 1 = Starting / chunk pre-gen
# 2 = Skybox phase
# 3 = Game started
#
Expand All @@ -871,9 +873,9 @@
#declare score_holder $is_multiplayer
scoreboard players add $is_multiplayer bingo.state 0
#>
# The status of pregeneration.
# The status of chunk pregeneration.
# 0 = not started
# 1 = started
# 1 = started / during the process
# 2 = completed
#
# @public
Expand Down Expand Up @@ -1121,7 +1123,7 @@
# items are duplicated into the categories array.
#
# You may use this function tag for modifing existing items from the default
# bingo item pool or from other extensio packs.
# bingo item pool or from other extension packs.
#
# @api
#declare tag/function bingo:post_registration
Expand Down
4 changes: 2 additions & 2 deletions data/bingo/functions/tick/clean_up.mcfunction
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#
# This function cleans up some temporary data every 5 minutes.
#
# This prevents the tmp scoreboarb from being filled with too much garbage over
# time
# This prevents the tmp and io scoreboards from being filled with too much
# garbage over time
#
# @within
# function bingo:init/init
Expand Down

0 comments on commit 9818616

Please sign in to comment.