@@ -474,30 +474,126 @@ public void awardAchievement(Achievement a)
474
474
throw new UnsupportedOperationException (_ ("notSupportedYet" ));
475
475
}
476
476
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
+
477
489
@ Override
478
490
public void incrementStatistic (Statistic ststc )
479
491
{
480
492
throw new UnsupportedOperationException (_ ("notSupportedYet" ));
481
493
}
482
494
495
+ @ Override
496
+ public void decrementStatistic (Statistic statistic ) throws IllegalArgumentException
497
+ {
498
+ throw new UnsupportedOperationException (_ ("notSupportedYet" ));
499
+ }
500
+
483
501
@ Override
484
502
public void incrementStatistic (Statistic ststc , int i )
485
503
{
486
504
throw new UnsupportedOperationException (_ ("notSupportedYet" ));
487
505
}
488
506
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
+
489
525
@ Override
490
526
public void incrementStatistic (Statistic ststc , Material mtrl )
491
527
{
492
528
throw new UnsupportedOperationException (_ ("notSupportedYet" ));
493
529
}
494
530
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
+
495
543
@ Override
496
544
public void incrementStatistic (Statistic ststc , Material mtrl , int i )
497
545
{
498
546
throw new UnsupportedOperationException (_ ("notSupportedYet" ));
499
547
}
500
548
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
+
501
597
@ Override
502
598
public void playNote (Location lctn , byte b , byte b1 )
503
599
{
0 commit comments