@@ -261,7 +261,6 @@ public ItemMeta updateCropsMined(ItemStack playerTool, int add) {
261
261
// otherwise set the PDC back with the new list
262
262
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "crops-mined" );
263
263
if (!newTokens .isEmpty ()) {
264
- toolStats .logger .info ("New tokens: " + newTokens );
265
264
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
266
265
} else {
267
266
container .remove (toolStats .tokenApplied );
@@ -360,7 +359,6 @@ public ItemMeta updateBlocksMined(ItemStack playerTool, int add) {
360
359
// otherwise set the PDC back with the new list
361
360
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "blocks-mined" );
362
361
if (!newTokens .isEmpty ()) {
363
- toolStats .logger .info ("New tokens: " + newTokens );
364
362
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
365
363
} else {
366
364
container .remove (toolStats .tokenApplied );
@@ -460,7 +458,6 @@ public ItemMeta updatePlayerKills(ItemStack playerWeapon, int add) {
460
458
// otherwise set the PDC back with the new list
461
459
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "player-kills" );
462
460
if (!newTokens .isEmpty ()) {
463
- toolStats .logger .info ("New tokens: " + newTokens );
464
461
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
465
462
} else {
466
463
container .remove (toolStats .tokenApplied );
@@ -559,7 +556,6 @@ public ItemMeta updateMobKills(ItemStack playerWeapon, int add) {
559
556
// otherwise set the PDC back with the new list
560
557
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "mob-kills" );
561
558
if (!newTokens .isEmpty ()) {
562
- toolStats .logger .info ("New tokens: " + newTokens );
563
559
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
564
560
} else {
565
561
container .remove (toolStats .tokenApplied );
@@ -666,7 +662,6 @@ public ItemMeta updateArmorDamage(ItemStack armorPiece, double damage, boolean b
666
662
// otherwise set the PDC back with the new list
667
663
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "damage-taken" );
668
664
if (!newTokens .isEmpty ()) {
669
- toolStats .logger .info ("New tokens: " + newTokens );
670
665
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
671
666
} else {
672
667
container .remove (toolStats .tokenApplied );
@@ -773,7 +768,6 @@ public ItemMeta updateWeaponDamage(ItemStack weapon, double damage, boolean bypa
773
768
// otherwise set the PDC back with the new list
774
769
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "damage-done" );
775
770
if (!newTokens .isEmpty ()) {
776
- toolStats .logger .info ("New tokens: " + newTokens );
777
771
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
778
772
} else {
779
773
container .remove (toolStats .tokenApplied );
@@ -872,7 +866,6 @@ public ItemMeta updateFlightTime(ItemStack elytra, long duration) {
872
866
// otherwise set the PDC back with the new list
873
867
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "flight-time" );
874
868
if (!newTokens .isEmpty ()) {
875
- toolStats .logger .info ("New tokens: " + newTokens );
876
869
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
877
870
} else {
878
871
container .remove (toolStats .tokenApplied );
@@ -989,7 +982,6 @@ public ItemMeta updateSheepSheared(ItemStack shears, int add) {
989
982
// otherwise set the PDC back with the new list
990
983
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "sheep-sheared" );
991
984
if (!newTokens .isEmpty ()) {
992
- toolStats .logger .info ("New tokens: " + newTokens );
993
985
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
994
986
} else {
995
987
container .remove (toolStats .tokenApplied );
@@ -1088,7 +1080,6 @@ public ItemMeta updateArrowsShot(ItemStack bow, int add) {
1088
1080
// otherwise set the PDC back with the new list
1089
1081
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "arrows-shot" );
1090
1082
if (!newTokens .isEmpty ()) {
1091
- toolStats .logger .info ("New tokens: " + newTokens );
1092
1083
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
1093
1084
} else {
1094
1085
container .remove (toolStats .tokenApplied );
@@ -1189,7 +1180,6 @@ public ItemMeta updateFishCaught(ItemStack fishingRod, int add) {
1189
1180
// otherwise set the PDC back with the new list
1190
1181
List <String > newTokens = toolStats .itemChecker .removeToken (appliedTokens , "fish-caught" );
1191
1182
if (!newTokens .isEmpty ()) {
1192
- toolStats .logger .info ("New tokens: " + newTokens );
1193
1183
container .set (toolStats .tokenApplied , PersistentDataType .STRING , String .join ("," , newTokens ));
1194
1184
} else {
1195
1185
container .remove (toolStats .tokenApplied );
0 commit comments