Minecraft-AMS / Carpet-AMS-Addition

A fabric-carpet extension mod. It offers some interesting and useful features.
https://minecraft-ams.github.io/carpetamsaddition/
GNU Lesser General Public License v3.0
59 stars 7 forks source link

feat✨(rules): 添加 fakePlayerInteractLikeClient 规则以修复假人交互与客户端行为的不一致 #136

Closed wendavid552 closed 3 months ago

wendavid552 commented 3 months ago

本规则将把假人的行为与正常客户端行为同步

详细解析

在假人的use命令中调用interact()和interactAt()函数并获取其ActionResult,但是部分实体(本次主要是盔甲架、船和矿车)的交互结果在客户端和服务器端存在不一致(客户端会判断并直接提前返回认为是成功的结果,但服务器端会进行详细的判断)。

说明

在未来遇到任何类似问题时,同样可以在本规则下添加代码。