You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
662 B
26 lines
662 B
10 years ago
|
--- ../src-base/minecraft/org/bukkit/entity/Arrow.java
|
||
|
+++ ../src-work/minecraft/org/bukkit/entity/Arrow.java
|
||
|
@@ -39,4 +39,22 @@
|
||
|
* @param critical whether or not it should be critical
|
||
|
*/
|
||
|
public void setCritical(boolean critical);
|
||
|
+
|
||
|
+ // Spigot start
|
||
|
+ public class Spigot extends Entity.Spigot
|
||
|
+ {
|
||
|
+
|
||
|
+ public double getDamage()
|
||
|
+ {
|
||
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
||
|
+ }
|
||
|
+
|
||
|
+ public void setDamage(double damage)
|
||
|
+ {
|
||
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
||
|
+ }
|
||
|
+ }
|
||
|
+
|
||
|
+ Spigot spigot();
|
||
|
+ // Spigot end
|
||
|
}
|