这个 Mod 修复了 Beta 1.7.3 联机中实体物理效果异常的 Bug。
作者还提供了非 Mod 手段直接在 Minecraft Coder Pack 里修复它的步骤:
找到 Entity.class 的第 543 行;
在位置设定代码前加上一句 if (!this.worldObj.multiplayerWorld || this instanceof EntityPlayer || !(this instanceof EntityLiving)){;
在原代码结尾结尾补完新增的 if 语句的 },原语句有三行;
重新编译并进行混淆;
修改过的源代码会在被编译完成后被导出,在 reobf/minecraft 里找到 sn.class 覆盖掉 minecraft.jar 里的 sn.class 即可。