Skip to content

Commit

Permalink
Update to latest 1.13.2 spigot
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnuh committed Dec 28, 2018
1 parent d5cb2ca commit 3fe1351
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/v1_13_R2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.13.1-R0.1-SNAPSHOT</version>
<version>1.13.2-R0.1-SNAPSHOT</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.13.1-R0.1-SNAPSHOT</version>
<version>1.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void k(){// Just earch for "0.2F /" in entity dragon.
if(d4 > 10.0D){
d4 = 10.0D;
}
this.b = (this.bA.getBoundingBox().b + d4);
this.b = (this.bA.getBoundingBox().minY + d4);
}else{
this.a += this.random.nextGaussian() * 2.0D;
this.c += this.random.nextGaussian() * 2.0D;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void onLive(){
this.shakeCount = 0.0F;
}
if(this.shakeCount > 0.4F){
float f = (float) this.getBoundingBox().b;
float f = (float) this.getBoundingBox().minY;
int i = (int) (MathHelper.sin((this.shakeCount - 0.4F) * 3.1415927F) * 7.0F);
for(int j = 0; j < i; ++j){
float f1 = (this.random.nextFloat() * 2.0F - 1.0F) * this.width * 0.5F;
Expand Down

0 comments on commit 3fe1351

Please sign in to comment.