Skip to content

Commit

Permalink
Rename BaseCooldownTags to VanillaCooldownTags
Browse files Browse the repository at this point in the history
  • Loading branch information
ipad54 committed Aug 20, 2024
1 parent 5d3a7a8 commit 5755207
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/item/ChorusFruit.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ public function getCooldownTicks() : int{
}

public function getCooldownTag() : ?string{
return BaseCooldownTags::CHORUS_FRUIT;
return VanillaCooldownTags::CHORUS_FRUIT;
}
}
2 changes: 1 addition & 1 deletion src/item/EnderPearl.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ public function getCooldownTicks() : int{
}

public function getCooldownTag() : ?string{
return BaseCooldownTags::ENDER_PEARL;
return VanillaCooldownTags::ENDER_PEARL;
}
}
2 changes: 1 addition & 1 deletion src/item/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ public function getCooldownTicks() : int{
*
* If tag is null, item state id will be used to store cooldown.
*
* @see BaseCooldownTags
* @see VanillaCooldownTags
*/
public function getCooldownTag() : ?string{
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* Tags used by items to determine their cooldown group.
* @see Item::getCooldownTag()
*/
final class BaseCooldownTags{
final class VanillaCooldownTags{

private function __construct(){
//NOOP
Expand Down

0 comments on commit 5755207

Please sign in to comment.