generated from Turnip-Labs/bta-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2e4787c
commit aa93aa1
Showing
9 changed files
with
55 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
<img align="right" height="128" width="128" alt="" loading="lazy" decoding="async" src="./src/main/resources/icon.png"/> | ||
|
||
# Playground | ||
# Livemap | ||
|
||
This is the beginning of awesome mods! | ||
Online Livemap for your server. | ||
|
||
> **Important** | ||
> Required [Babric](https://github.com/Turnip-Labs/babric-instance-repo/releases) to run the mod. | ||
## Features | ||
|
||
- Feature #1 | ||
- Feature #2 | ||
- Feature #3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...otenginear/playground/ChunkProcessor.java → .../rootenginear/livemap/ChunkProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package rootenginear.playground; | ||
package rootenginear.livemap; | ||
|
||
import net.minecraft.core.world.chunk.Chunk; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package rootenginear.livemap; | ||
|
||
import net.fabricmc.api.ModInitializer; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
public class Livemap implements ModInitializer { | ||
public static final String MOD_ID = "livemap"; | ||
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID); | ||
|
||
@Override | ||
public void onInitialize() { | ||
LOGGER.info("Livemap initialized."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "playground", | ||
"version": "${version}", | ||
"name": "Playground", | ||
"description": "This is the beginning of awesome mods!", | ||
"authors": [ | ||
"rootEnginear" | ||
], | ||
"schemaVersion": 1, | ||
"id": "livemap", | ||
"version": "${version}", | ||
"name": "Livemap", | ||
"description": "Online Livemap for your server", | ||
"authors": [ | ||
"rootEnginear" | ||
], | ||
"icon": "icon.png", | ||
"contact": { | ||
"homepage": "https://github.com/rootEnginear/bta-rootenginear-mods", | ||
"sources": "https://github.com/rootEnginear/bta-rootenginear-mods", | ||
"issues": "https://github.com/rootEnginear/bta-rootenginear-mods/issues" | ||
}, | ||
"license": "CC0-1.0", | ||
"environment": "*", | ||
"entrypoints": { | ||
"main": [ | ||
"rootenginear.playground.Playground" | ||
] | ||
}, | ||
"mixins": [ | ||
"playground.mixins.json" | ||
], | ||
"depends": { | ||
"fabricloader": ">=0.13.3" | ||
} | ||
"contact": { | ||
"homepage": "https://github.com/rootEnginear/bta-rootenginear-mods", | ||
"sources": "https://github.com/rootEnginear/bta-rootenginear-mods", | ||
"issues": "https://github.com/rootEnginear/bta-rootenginear-mods/issues" | ||
}, | ||
"license": "CC0-1.0", | ||
"environment": "*", | ||
"entrypoints": { | ||
"main": [ | ||
"rootenginear.livemap.Livemap" | ||
] | ||
}, | ||
"mixins": [ | ||
"livemap.mixins.json" | ||
], | ||
"depends": { | ||
"fabricloader": ">=0.13.3" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/main/resources/playground.mixins.json → src/main/resources/livemap.mixins.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters