@@ -474,30 +474,126 @@ public void awardAchievement(Achievement a)
474474 throw new UnsupportedOperationException (_ ("notSupportedYet" ));
475475 }
476476
477+ @ Override
478+ public void removeAchievement (Achievement achievement )
479+ {
480+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
481+ }
482+
483+ @ Override
484+ public boolean hasAchievement (Achievement achievement )
485+ {
486+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
487+ }
488+
477489 @ Override
478490 public void incrementStatistic (Statistic ststc )
479491 {
480492 throw new UnsupportedOperationException (_ ("notSupportedYet" ));
481493 }
482494
495+ @ Override
496+ public void decrementStatistic (Statistic statistic ) throws IllegalArgumentException
497+ {
498+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
499+ }
500+
483501 @ Override
484502 public void incrementStatistic (Statistic ststc , int i )
485503 {
486504 throw new UnsupportedOperationException (_ ("notSupportedYet" ));
487505 }
488506
507+ @ Override
508+ public void decrementStatistic (Statistic statistic , int i ) throws IllegalArgumentException
509+ {
510+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
511+ }
512+
513+ @ Override
514+ public void setStatistic (Statistic statistic , int i ) throws IllegalArgumentException
515+ {
516+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
517+ }
518+
519+ @ Override
520+ public int getStatistic (Statistic statistic ) throws IllegalArgumentException
521+ {
522+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
523+ }
524+
489525 @ Override
490526 public void incrementStatistic (Statistic ststc , Material mtrl )
491527 {
492528 throw new UnsupportedOperationException (_ ("notSupportedYet" ));
493529 }
494530
531+ @ Override
532+ public void decrementStatistic (Statistic statistic , Material material ) throws IllegalArgumentException
533+ {
534+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
535+ }
536+
537+ @ Override
538+ public int getStatistic (Statistic statistic , Material material ) throws IllegalArgumentException
539+ {
540+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
541+ }
542+
495543 @ Override
496544 public void incrementStatistic (Statistic ststc , Material mtrl , int i )
497545 {
498546 throw new UnsupportedOperationException (_ ("notSupportedYet" ));
499547 }
500548
549+ @ Override
550+ public void decrementStatistic (Statistic statistic , Material material , int i ) throws IllegalArgumentException
551+ {
552+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
553+ }
554+
555+ @ Override
556+ public void setStatistic (Statistic statistic , Material material , int i ) throws IllegalArgumentException
557+ {
558+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
559+ }
560+
561+ @ Override
562+ public void incrementStatistic (Statistic statistic , EntityType entityType ) throws IllegalArgumentException
563+ {
564+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
565+ }
566+
567+ @ Override
568+ public void decrementStatistic (Statistic statistic , EntityType entityType ) throws IllegalArgumentException
569+ {
570+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
571+ }
572+
573+ @ Override
574+ public int getStatistic (Statistic statistic , EntityType entityType ) throws IllegalArgumentException
575+ {
576+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
577+ }
578+
579+ @ Override
580+ public void incrementStatistic (Statistic statistic , EntityType entityType , int i ) throws IllegalArgumentException
581+ {
582+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
583+ }
584+
585+ @ Override
586+ public void decrementStatistic (Statistic statistic , EntityType entityType , int i )
587+ {
588+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
589+ }
590+
591+ @ Override
592+ public void setStatistic (Statistic statistic , EntityType entityType , int i )
593+ {
594+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
595+ }
596+
501597 @ Override
502598 public void playNote (Location lctn , byte b , byte b1 )
503599 {
0 commit comments