1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-25 22:53:22 +00:00
Modernized/improved/actually updated version of ComputerCraft: https://tweaked.cc
Go to file
SquidDev 77d225d1fe Listen to correct block update
We now listen to neighborChanged instead of onNeighborChange. This means
computers correctly detect redstone updates.

However, this leads to issues when moving turtles, so we defer the block
update until the turtle has finished moving.
2017-05-01 16:08:27 +01:00
gradle/wrapper ComputerCraft 1.79 initial upload 2017-05-01 14:32:39 +01:00
libs ComputerCraft 1.79 initial upload 2017-05-01 14:32:39 +01:00
luaj-2.0.3 ComputerCraft 1.80pr0 2017-05-01 14:51:26 +01:00
src/main Listen to correct block update 2017-05-01 16:08:27 +01:00
.gitignore ComputerCraft 1.80pr0 2017-05-01 14:51:26 +01:00
build_luaj.sh ComputerCraft 1.79 initial upload 2017-05-01 14:32:39 +01:00
build.gradle ComputerCraft 1.80pr0 2017-05-01 14:51:26 +01:00
codesize.sh codesize.sh now counts JSON too 2017-05-01 15:24:08 +01:00
deploy.sh ComputerCraft 1.80pr0 2017-05-01 14:51:26 +01:00
gradlew ComputerCraft 1.80pr0 2017-05-01 14:51:26 +01:00
LICENSE ComputerCraft 1.79 initial upload 2017-05-01 14:32:39 +01:00
LICENSE-luaj ComputerCraft 1.79 initial upload 2017-05-01 14:32:39 +01:00
README.md ComputerCraft 1.79 initial upload 2017-05-01 14:32:39 +01:00
setup.sh ComputerCraft 1.80pr0 2017-05-01 14:51:26 +01:00

ComputerCraft

ComputerCraft is a Minecraft modification which adds programmable Robots and Computers to the world of Minecraft. If you're not familiar with ComputerCraft, visit the Website or the Wiki to find out more.

About this Repository

ComputerCraft was originally released in late 2011 by Daniel Ratcliffe. In early 2017, after working on the mod solo for five years, it was decided to release the source code publicly to allow Dan to devote time to other projects. This repository marks the first public release of this source code.

The code in this repository will always represent the "bleeding edge" of the ComputerCraft codebase, but stable builds back to 1.79 will be marked on the Releases page.

Contributing

While ComputerCraft will no longer be actively developed by Daniel Ratcliffe, you may still contribute pull requests which will be reviewed and incorporated into releases periodically. A pull requests is more likely to be accepted if it meets the following criteria:

  • It does not add any new dependencies for compiling, running or using the mod.
  • It does not break compatibility with world saves or programs created with previous versions of the mod.
  • It does not add unneccessary complexity for users of the mod, and maintains the accessibility for which the mod is known.
  • It does not add unneccessary complexity or stylistic changes to the code, especially where functionality is not being changed.
  • It does not create bugs!

The pull requests most likely to be accepted are those which fix bugs, simplify code, or make the mod compatible with newer versions of Minecraft.