-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
logger util and 'add' cmd datapack support
- Loading branch information
1 parent
7525f76
commit ac61ee9
Showing
13 changed files
with
355 additions
and
79 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# datapacks | ||
|
||
[![mcman badge](https://img.shields.io/badge/uses-mcman-purple?logo=github)](https://github.com/ParadigmMC/mcman) | ||
|
||
<!-- run 'mcman md' to update! --> | ||
|
||
<!--start:mcman-server--> | ||
| Version | Type | | ||
| ------- | ------- | | ||
| 1.20.1 | Vanilla | | ||
<!--end:mcman-server--> | ||
|
||
## Plugins | ||
|
||
<!--start:mcman-addons--> | ||
| | | ||
| | | ||
<!--end:mcman-addons--> |
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,2 @@ | ||
server-port=${PORT:25565} | ||
motd=${SERVER_NAME:A Minecraft Server} |
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,23 @@ | ||
name = "datapacks" | ||
mc_version = "1.20.1" | ||
|
||
[jar] | ||
type = "vanilla" | ||
|
||
[variables] | ||
PORT = "25565" | ||
|
||
[launcher] | ||
aikars_flags = true | ||
proxy_flags = false | ||
nogui = true | ||
eula_args = true | ||
|
||
[[plugins]] | ||
type = "modrinth" | ||
id = "vanilla-refresh" | ||
version = "c1SnJlLJ" | ||
|
||
[markdown] | ||
files = ["README.md"] | ||
auto_update = false |
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 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 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,13 +1,15 @@ | ||
mod clientsidemod; | ||
mod downloadable; | ||
mod server; | ||
mod servertoml; | ||
mod serverlauncher; | ||
mod servertype; | ||
mod world; | ||
mod network; | ||
|
||
pub use clientsidemod::*; | ||
pub use downloadable::*; | ||
pub use server::*; | ||
pub use servertoml::*; | ||
pub use serverlauncher::*; | ||
pub use servertype::*; | ||
pub use world::*; | ||
pub use network::*; |
Oops, something went wrong.