American2050 11 Report post Posted January 20, 2017 I was wondering why between version and versions we get minor changes like 1.10.2 Minecraft.getMinecraft().theWorld; 1.11.2 Minecraft.getMinecraft().world; Is it really that important to rename those things, what's the overall idea behind this changes? Well, just wondering this, thanks for the feedback. Share this post Link to post Share on other sites
diesieben07 5803 Report post Posted January 20, 2017 The idea is to slowly but surely clean up old cruft that has built up in the mappings. It just makes things more pleasant to work with if you can do Minecraft.getMinecraft().player.sendMessage instead of Minecraft.getMinecraft().The player.addChatComponentMessage . And this is just the first I've come up with. Share this post Link to post Share on other sites
American2050 11 Report post Posted January 20, 2017 Ohh ok. Yes that was other one I was having to change while updating to 1.11.2 the Chat messages. Interesting, and for sure, it makes things more clear and nice looking. Share this post Link to post Share on other sites
diesieben07 5803 Report post Posted January 20, 2017 While looking at another thread I came across another class that just hat atrocious method names before: MathHelper. Share this post Link to post Share on other sites