Skip to content

Commit

Permalink
Merge branch '220-1.10.25.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
zeruth committed Mar 24, 2024
2 parents a792950 + 46c1d4e commit 7fe218f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.1</version>
<version>1.10.25.2</version>
</parent>

<artifactId>cache</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.1</version>
<version>1.10.25.2</version>
<packaging>pom</packaging>

<name>RuneLite</name>
Expand Down Expand Up @@ -65,7 +65,7 @@
<url>https://github.com/runelite/runelite</url>
<connection>scm:git:git://github.com/runelite/runelite</connection>
<developerConnection>scm:git:[email protected]:runelite/runelite</developerConnection>
<tag>runelite-parent-1.10.25.1</tag>
<tag>runelite-parent-1.10.25.2</tag>
</scm>

<developers>
Expand Down
2 changes: 1 addition & 1 deletion runelite-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.1</version>
<version>1.10.25.2</version>
</parent>

<artifactId>runelite-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion runelite-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.1</version>
<version>1.10.25.2</version>
</parent>

<artifactId>client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ float4 hillskew_vertexf(read_only image3d_t tileHeightImage, float4 v, int hills
int sx = (int)(floor(fx));
int sz = (int)(floor(fz));
float it;
float h1 = mix(tile_height(tileHeightImage, plane, sx, sz), tile_height(tileHeightImage, plane, sx + 1, sz), fract(fx, &it));
float h2 = mix(tile_height(tileHeightImage, plane, sx, sz + 1), tile_height(tileHeightImage, plane, sx + 1, sz + 1), fract(fx, &it));
float h1 = mix((float)tile_height(tileHeightImage, plane, sx, sz), (float)tile_height(tileHeightImage, plane, sx + 1, sz), fract(fx, &it));
float h2 = mix((float)tile_height(tileHeightImage, plane, sx, sz + 1), (float)tile_height(tileHeightImage, plane, sx + 1, sz + 1), fract(fx, &it));
float h3 = mix(h1, h2, fract(fz, &it));
return (float4)(v.x, v.y + h3 - y, v.z, v.w);
} else {
Expand Down
2 changes: 1 addition & 1 deletion runelite-jshell/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.1</version>
<version>1.10.25.2</version>
</parent>

<artifactId>jshell</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion runelite-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>net.runelite</groupId>
<artifactId>runelite-parent</artifactId>
<version>1.10.25.1</version>
<version>1.10.25.2</version>
</parent>

<artifactId>runelite-maven-plugin</artifactId>
Expand Down

0 comments on commit 7fe218f

Please sign in to comment.