Update forge version to 35.1.28 (#113)

* Bump forge to 35.1.15 (还真跑起来了)

Signed-off-by: 秋雨落 <i@rain.cx>

* Update forge to 35.1.28

Signed-off-by: 秋雨落 <i@rain.cx>

* Change forge version number of README.md

Signed-off-by: 秋雨落 <i@rain.cx>
This commit is contained in:
秋雨落 2021-01-02 19:10:24 +08:00 committed by GitHub
parent 1a16e3a933
commit feb567a193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 5 deletions

View File

@ -6,7 +6,7 @@ A Bukkit server implementation utilizing Mixin.
| Minecraft | Forge | Status | Build | | Minecraft | Forge | Status | Build |
| :----: | :----: | :---: | :---: | | :----: | :----: | :---: | :---: |
| 1.16.x | 35.1.4 | ACTIVE | [![1.16 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-16?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-16) | | 1.16.x | 35.1.28 | ACTIVE | [![1.16 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-16?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-16) |
| 1.15.x | 31.2.47 | ACTIVE | [![1.15 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-15?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-15) | | 1.15.x | 31.2.47 | ACTIVE | [![1.15 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-15?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-15) |
| 1.14.x | 28.2.0 | [LEGACY](https://github.com/IzzelAliz/Arclight/releases/tag/1.0.6) | [![1.14 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight) | | 1.14.x | 28.2.0 | [LEGACY](https://github.com/IzzelAliz/Arclight/releases/tag/1.0.6) | [![1.14 Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight) |

View File

@ -21,7 +21,7 @@ apply plugin: 'io.izzel.arclight'
ext { ext {
minecraftVersion = '1.16.4' minecraftVersion = '1.16.4'
forgeVersion = '35.1.4' forgeVersion = '35.1.28'
} }
arclight { arclight {

View File

@ -126,7 +126,7 @@ public abstract class EntityMixin implements InternalEntityBridge, EntityBridge,
@Shadow @Nullable public abstract MinecraftServer getServer(); @Shadow @Nullable public abstract MinecraftServer getServer();
@Shadow public abstract Vector3d getMotion(); @Shadow public abstract Vector3d getMotion();
@Shadow public abstract EntityType<?> getType(); @Shadow public abstract EntityType<?> getType();
@Shadow(remap = false) public abstract void remove(boolean keepData); @Shadow(remap = false) public void remove(boolean keepData) { }
@Shadow @Final protected Random rand; @Shadow @Final protected Random rand;
@Shadow public abstract float getWidth(); @Shadow public abstract float getWidth();
@Shadow public abstract float getHeight(); @Shadow public abstract float getHeight();

View File

@ -102,7 +102,6 @@ public abstract class LivingEntityMixin extends EntityMixin implements LivingEnt
@Shadow public PlayerEntity attackingPlayer; @Shadow public PlayerEntity attackingPlayer;
@Shadow public int deathTime; @Shadow public int deathTime;
@Shadow protected boolean dead; @Shadow protected boolean dead;
@Shadow(remap = false) public void remove(boolean keepData) { }
@Shadow public abstract ModifiableAttributeInstance getAttribute(Attribute attribute); @Shadow public abstract ModifiableAttributeInstance getAttribute(Attribute attribute);
@Shadow public boolean potionsNeedUpdate; @Shadow public boolean potionsNeedUpdate;
@Shadow public abstract boolean removePotionEffect(Effect effectIn); @Shadow public abstract boolean removePotionEffect(Effect effectIn);

View File

@ -22,7 +22,7 @@ apply plugin: 'maven-publish'
ext { ext {
minecraftVersion = '1.16.4' minecraftVersion = '1.16.4'
forgeVersion = '35.1.4' forgeVersion = '35.1.28'
} }
arclight { arclight {