|
30 | 30 | import net.sf.cglib.proxy.MethodInterceptor;
|
31 | 31 | import net.sf.cglib.proxy.MethodProxy;
|
32 | 32 |
|
33 |
| -import org.bukkit.Bukkit; |
34 |
| -import org.bukkit.Location; |
35 |
| -import org.bukkit.OfflinePlayer; |
36 |
| -import org.bukkit.World; |
| 33 | +import org.bukkit.*; |
| 34 | +import org.bukkit.entity.EntityType; |
37 | 35 | import org.bukkit.entity.Player;
|
38 | 36 |
|
39 | 37 | import com.comphenix.protocol.utility.EnhancerFactory;
|
@@ -109,6 +107,50 @@ public Location getBedSpawnLocation() {
|
109 | 107 | return bedSpawnLocation;
|
110 | 108 | }
|
111 | 109 |
|
| 110 | + // TODO do we need to implement this? |
| 111 | + |
| 112 | + public void incrementStatistic(Statistic statistic) throws IllegalArgumentException { } |
| 113 | + |
| 114 | + public void decrementStatistic(Statistic statistic) throws IllegalArgumentException { } |
| 115 | + |
| 116 | + public void incrementStatistic(Statistic statistic, int i) throws IllegalArgumentException { } |
| 117 | + |
| 118 | + public void decrementStatistic(Statistic statistic, int i) throws IllegalArgumentException { } |
| 119 | + |
| 120 | + public void setStatistic(Statistic statistic, int i) throws IllegalArgumentException { } |
| 121 | + |
| 122 | + public int getStatistic(Statistic statistic) throws IllegalArgumentException { |
| 123 | + return 0; |
| 124 | + } |
| 125 | + |
| 126 | + public void incrementStatistic(Statistic statistic, Material material) throws IllegalArgumentException { } |
| 127 | + |
| 128 | + public void decrementStatistic(Statistic statistic, Material material) throws IllegalArgumentException { } |
| 129 | + |
| 130 | + public int getStatistic(Statistic statistic, Material material) throws IllegalArgumentException { |
| 131 | + return 0; |
| 132 | + } |
| 133 | + |
| 134 | + public void incrementStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException { } |
| 135 | + |
| 136 | + public void decrementStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException { } |
| 137 | + |
| 138 | + public void setStatistic(Statistic statistic, Material material, int i) throws IllegalArgumentException { } |
| 139 | + |
| 140 | + public void incrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException { } |
| 141 | + |
| 142 | + public void decrementStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException { } |
| 143 | + |
| 144 | + public int getStatistic(Statistic statistic, EntityType entityType) throws IllegalArgumentException { |
| 145 | + return 0; |
| 146 | + } |
| 147 | + |
| 148 | + public void incrementStatistic(Statistic statistic, EntityType entityType, int i) throws IllegalArgumentException { } |
| 149 | + |
| 150 | + public void decrementStatistic(Statistic statistic, EntityType entityType, int i) { } |
| 151 | + |
| 152 | + public void setStatistic(Statistic statistic, EntityType entityType, int i) { } |
| 153 | + |
112 | 154 | @Override
|
113 | 155 | public long getFirstPlayed() {
|
114 | 156 | return firstPlayed;
|
|
0 commit comments