Skip to content

Commit af50d17

Browse files
author
eaglercraft
committed
u26
1 parent ae5f006 commit af50d17

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class EaglercraftVersion {
1010
/// Customize these to fit your fork:
1111

1212
public static final String projectForkName = "EaglercraftX";
13-
public static final String projectForkVersion = "u25";
13+
public static final String projectForkVersion = "u26";
1414
public static final String projectForkVendor = "lax1dude";
1515

1616
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
@@ -20,7 +20,7 @@ public class EaglercraftVersion {
2020
public static final String projectOriginName = "EaglercraftX";
2121
public static final String projectOriginAuthor = "lax1dude";
2222
public static final String projectOriginRevision = "1.8";
23-
public static final String projectOriginVersion = "u25";
23+
public static final String projectOriginVersion = "u26";
2424

2525
public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8"; // rest in peace
2626

@@ -31,7 +31,7 @@ public class EaglercraftVersion {
3131
public static final boolean enableUpdateService = true;
3232

3333
public static final String updateBundlePackageName = "net.lax1dude.eaglercraft.v1_8.client";
34-
public static final int updateBundlePackageVersionInt = 25;
34+
public static final int updateBundlePackageVersionInt = 26;
3535

3636
public static final String updateLatestLocalStorageKey = "latestUpdate_" + updateBundlePackageName;
3737

src/main/java/net/minecraft/block/BlockSponge.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ private boolean absorb(World worldIn, BlockPos pos) {
9696
linkedlist.add(new Tuple(pos, Integer.valueOf(0)));
9797
int i = 0;
9898

99-
BlockPos tmp = new BlockPos(0, 0, 0);
10099
while (!linkedlist.isEmpty()) {
101100
Tuple tuple = (Tuple) linkedlist.poll();
102101
BlockPos blockpos = (BlockPos) tuple.getFirst();
@@ -105,7 +104,7 @@ private boolean absorb(World worldIn, BlockPos pos) {
105104
EnumFacing[] facings = EnumFacing._VALUES;
106105
for (int k = 0; k < facings.length; ++k) {
107106
EnumFacing enumfacing = facings[k];
108-
BlockPos blockpos1 = blockpos.offsetEvenFaster(enumfacing, tmp);
107+
BlockPos blockpos1 = blockpos.offset(enumfacing);
109108
if (worldIn.getBlockState(blockpos1).getBlock().getMaterial() == Material.water) {
110109
worldIn.setBlockState(blockpos1, Blocks.air.getDefaultState(), 2);
111110
arraylist.add(blockpos1);

0 commit comments

Comments
 (0)