From c2063ddc8843b2511ac991c8cb90c63a6be1414d Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Thu, 8 Oct 2020 10:02:05 +0100 Subject: [PATCH] Some small typos/grammar fixes --- Incompatibilities-between-versions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Incompatibilities-between-versions.md b/Incompatibilities-between-versions.md index b121a5a..278f9fc 100644 --- a/Incompatibilities-between-versions.md +++ b/Incompatibilities-between-versions.md @@ -6,7 +6,7 @@ This page serves as documentation for breaking changes and "gotchas" one should - The config file has now been split into client and server config files. - Client config can be found in `config/computercraft-client.toml`. - Server config can be found in `saves//serverconfig/computercraft-server.toml`. These are now save-specific - it is currently impossible to have a global configuration. However, you can create a default config by placing it in `defaultconfigs/computercraft-server.toml`. - - The ComputerCraft Java API has been entirely rewritten, to allow for more efficient Lua/Java interop. This should have no impact on users, but should make the API easier to use, and reduce overhead. + - The ComputerCraft Java API has been entirely rewritten to allow for more efficient Lua/Java interop. This should have no impact on users, but makes the API easier to use and reduces overhead. - The default treasure disks have been entirely removed. They are now added [by an external data pack](https://github.com/SquidDev-CC/treasure-disks), which also registers them as dungeon loot. The same system may be used to provide your own loot disks. - `turtle.getItemDetail` no longer includes damage by default. One must now pass `true` [as the second parameter](https://tweaked.cc/module/turtle.html#v:getItemDetail). `turtle.getItemDetail()` becomes `turtle.getItemDetail(nil, true)`, and `turtle.getItemDetail(slot)` becomes `turtle.getItemDetail(slot, true)`. @@ -25,7 +25,7 @@ This page serves as documentation for breaking changes and "gotchas" one should - See [the example datapack](https://github.com/SquidDev-CC/datapack-example) for how to get started. ## Minecraft 1.8 to 1.12 - - Programs run via `shell.run` are now started in their own isolated environment. This means globals set by programs, will not be accessible outside of this program. + - Programs run via `shell.run` are now started in their own isolated environment. This means globals set by programs will not be accessible outside of this program. [key_event]: https://wiki.computercraft.cc/Key_event [key_up_event]: https://wiki.computercraft.cc/Key_up_event