1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-07-07 04:22:53 +00:00

Some small typos/grammar fixes

Jonathan Coates 2020-10-08 10:02:05 +01:00
parent 879e486515
commit c2063ddc88

@ -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/<world>/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