v0.9.0
Feature
- Let custom objectives be added to init function by passing the criteria as second argument of
Scoreboard.__call__(99483fb)
Scoreboard("not_created")
Scoreboard("created", "trigger")
# scoreboard objectives add created triggerScoreboard.__call__no longer accepts score holders as variadic arguments. Instead, use the objective's__getitem__.
a, b, c = Scoreboard("temp", "$a", "$b", "$c") # invalid
a, b, c = Scoreboard("temp")["$a", "$b", "$c"] # valid