3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-07 20:10:06 +01:00
FastAsyncWorldEdit/worldedit-fabric/src/main/resources/fabric.mod.json
Matthew Miller aa8d34c913
feature(fabric): added fabric support (#491)
* Initial work towards Fabric compat. This does not compile yet

* Further updates - should compile but Gradle is being weird.

* Remove useless buildscript extras

* Added mixins to buildscript classpath to fix Loom crash

* Make it compile

* Got it building and added interaction

* Fixed review comments

* Use ServerPlayerEntity for FakePlayer

* Use method references for nicer names

* Fixed remaining comments and added networking for CUI

* Output as dist.jar

* Added mixins for left click air

* Use regex for cleanliness
2019-06-27 22:25:02 +10:00

37 Zeilen
832 B
JSON

{
"schemaVersion": 1,
"id": "worldedit",
"version": "${version}",
"name": "WorldEdit",
"description": "WorldEdit is an easy-to-use in-game world editor for Minecraft, supporting both single- and multi-player.",
"authors": [
"sk89q",
"wizjany",
"TomyLobo",
"kenzierocks",
"Me4502"
],
"contact": {
"homepage": "https://enginehub.org/worldedit/",
"sources": "https://github.com/EngineHub/WorldEdit"
},
"license": "GPL3",
"icon": "assets/worldedit/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.sk89q.worldedit.fabric.FabricWorldEdit"
]
},
"depends": {
"fabricloader": ">=0.4.0",
"fabric": "*"
},
"mixins": [
"worldedit.mixins.json"
]
}