summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--gradle.properties2
-rw-r--r--src/main/resources/fabric.mod.json7
3 files changed, 11 insertions, 4 deletions
diff --git a/README.md b/README.md
index d5613da..3c7cad1 100644
--- a/README.md
+++ b/README.md
@@ -3,5 +3,11 @@ Transit is an attempt to provide simple uniform helpers for converting and trans
Transit makes no assumptions about what you transfer or how you transfer it, It only provides basic types for those that need it, and a network based API for compatibility.
+## A note on convention
+When working with blocks, the convention is such:
+1. The BlockEntity will impliment the INode/IAcceptorNode/IProviderNode interfaces.
+2. The Placed block will ask the blocks around it to become a provider and or an acceptor, not the other way around.
+
+
## License
This mod is available under the MIT licence going forward.
diff --git a/gradle.properties b/gradle.properties
index 2f0db5f..bf9d846 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.8.2+build.194
# Mod Properties
- mod_version = 0.11.1
+ mod_version = 0.11.2
maven_group = net.transit
archives_base_name = transit-api
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index b43e25f..8c69db6 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -1,7 +1,7 @@
{
"schemaVersion": 1,
"id": "transit-api",
- "version": "0.11.1",
+ "version": "0.11.2",
"name": "Transit API",
"description": "Move about!",
@@ -9,8 +9,9 @@
"CCGKyle"
],
"contact": {
- "homepage": "https://fabricmc.net/",
- "sources": "https://github.com/CoreChg/TransitAPI"
+ "homepage": "https://github.corechg.net/",
+ "sources": "https://github.com/CoreChg/TransitAPI",
+ "issues": "https://github.com/CoreChg/TransitAPI/issues"
},
"license": "MIT",