diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-04-24 15:09:47 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-04-24 15:09:47 -0400 |
commit | bdc90700713510f778ad002cd4ae32905e1f3c0e (patch) | |
tree | 2bab4aec8e399e7bbd724eeeec5b24b425cb3178 | |
parent | 0b131bfaaa60c18203f5907dfe9f0086bc5b9ef1 (diff) |
[Update] Add issues for ModMenu
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | gradle.properties | 2 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 7 |
3 files changed, 11 insertions, 4 deletions
@@ -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", |