Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
102 additions
and 36 deletions.
- +1 −1 src/main/java/dan200/computercraft/ComputerCraft.java
- +1 −1 src/main/java/dan200/computercraft/client/render/TurtleSmartItemModel.java
- +23 −0 src/main/java/dan200/computercraft/core/apis/handles/EncodedInputHandle.java
- +2 −3 src/main/java/dan200/computercraft/shared/common/BlockGeneric.java
- +15 −15 src/main/java/dan200/computercraft/shared/peripheral/printer/TilePrinter.java
- +2 −2 src/main/resources/assets/computercraft/lua/bios.lua
- +18 −7 src/main/resources/assets/computercraft/lua/rom/apis/io.lua
- +2 −2 src/main/resources/assets/computercraft/lua/rom/help/cd.txt
- +2 −1 src/main/resources/assets/computercraft/lua/rom/help/fs.txt
- +4 −0 src/main/resources/assets/computercraft/lua/rom/modules/command/.ignoreme
- +4 −0 src/main/resources/assets/computercraft/lua/rom/modules/main/.ignoreme
- +4 −0 src/main/resources/assets/computercraft/lua/rom/modules/turtle/.ignoreme
- +5 −1 src/main/resources/assets/computercraft/lua/rom/programs/copy.lua
- +1 −1 src/main/resources/assets/computercraft/lua/rom/programs/edit.lua
- +1 −1 src/main/resources/assets/computercraft/lua/rom/programs/fun/advanced/paint.lua
- +6 −0 src/main/resources/assets/computercraft/lua/rom/programs/mkdir.lua
- +5 −0 src/main/resources/assets/computercraft/lua/rom/programs/rename.lua
- +6 −1 src/main/resources/assets/computercraft/lua/rom/programs/shell.lua
@@ -1,6 +1,6 @@ | ||
cd changes the the directory you're in. | ||
cd changes the directory you're in. | ||
|
||
ex: | ||
"cd rom" will move to "rom" folder. | ||
"cd .." will move up one folder. | ||
"cd /" will move to the root. | ||
"cd /" will move to the root. |
@@ -0,0 +1,4 @@ | ||
--[[ | ||
Alright then, don't ignore me. This file is to ensure the existence of the "modules/command" folder. | ||
You can use this folder to add modules who can be loaded with require() to your Resourcepack. | ||
]] |
@@ -0,0 +1,4 @@ | ||
--[[ | ||
Alright then, don't ignore me. This file is to ensure the existence of the "modules/main" folder. | ||
You can use this folder to add modules who can be loaded with require() to your Resourcepack. | ||
]] |
@@ -0,0 +1,4 @@ | ||
--[[ | ||
Alright then, don't ignore me. This file is to ensure the existence of the "modules/turtle" folder. | ||
You can use this folder to add modules who can be loaded with require() to your Resourcepack. | ||
]] |