added more QoL and addressed some issues with DynamicTrees.
This commit is contained in:
parent
5a4db13c54
commit
ab2fc01bab
41
CHANGELOG.md
41
CHANGELOG.md
@ -1,3 +1,44 @@
|
|||||||
|
# 1.1.3
|
||||||
|
|
||||||
|
## Config
|
||||||
|
|
||||||
|
- DynamicTrees will now die _very_ rarely. This is based on depleted soil.
|
||||||
|
- DynamicTrees leaves should behave like vanilla leaves again, meaning you can walk on them.
|
||||||
|
|
||||||
|
## Mods
|
||||||
|
|
||||||
|
### Additions
|
||||||
|
|
||||||
|
- Cubic Sun and Moon
|
||||||
|
- Makes the sun/moon into a cube. Resource pack.
|
||||||
|
- Cull Leaves
|
||||||
|
- Adds culling to leaves, providing a performance boost.
|
||||||
|
- Exchangers
|
||||||
|
- Adds an item that lets you change one block into another without needing to break it.
|
||||||
|
- Flopper
|
||||||
|
- Adds a fluid hopper for automatically pulling liquid from a block.
|
||||||
|
- Mandala's GUI Dark Mode
|
||||||
|
- A resource pack that adds a dark mode GUI. Probably don't use both dark modes at the same time.
|
||||||
|
- Motschen's Better Leaves
|
||||||
|
- Bushier leaves that take advantage of the leaf culling. Resource pack.
|
||||||
|
|
||||||
|
### Updates
|
||||||
|
|
||||||
|
- AttributeFix 17.2.6 -> 17.2.7
|
||||||
|
- CC: Tweaked 1.101.2 -> 1.101.3
|
||||||
|
- Cloth Config API 8.2.88 -> 8.3.103
|
||||||
|
- Collective 6.62 -> 6.65
|
||||||
|
- Connected Glass 1.1.6 -> 1.1.7
|
||||||
|
- JourneyMap Integration 0.13-33 -> 0.13-40
|
||||||
|
- Pipez 1.1.2 -> 1.1.3
|
||||||
|
- Placebo 7.2.0 -> 7.3.0
|
||||||
|
- Polymorph 0.46.3 -> 0.46.4
|
||||||
|
- Re-chiseled 1.1.0a -> 1.1.1
|
||||||
|
- Sophisticated Backpacks 3.18.53.868 -> 3.18.55.889
|
||||||
|
- Sophisticated Core 0.5.77.346 -> 0.5.78.363
|
||||||
|
- SuperMartijn642's Config Lib 1.1.6b -> 1.1.7
|
||||||
|
- Tesseract 1.0.34 -> 1.0.35
|
||||||
|
|
||||||
# 1.1.2
|
# 1.1.2
|
||||||
|
|
||||||
## Config Changes
|
## Config Changes
|
||||||
|
@ -256,7 +256,7 @@ customization {
|
|||||||
enable_scrolling = true
|
enable_scrolling = true
|
||||||
shadow = true
|
shadow = true
|
||||||
scale = 1.0
|
scale = 1.0
|
||||||
source = ScrumptiousCraft Um 1.1.2-1%n%Pack assembled by Raz%n%{"placeholder":"playeruuid"}
|
source = ScrumptiousCraft Um 1.1.3%n%Pack assembled by Raz%n%{"placeholder":"playeruuid"}
|
||||||
text_border = 0
|
text_border = 0
|
||||||
case_mode = normal
|
case_mode = normal
|
||||||
source_mode = direct
|
source_mode = direct
|
||||||
|
106
defaultconfigs/dynamictrees-server.toml
Normal file
106
defaultconfigs/dynamictrees-server.toml
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
|
||||||
|
#Seed Settings
|
||||||
|
[seeds]
|
||||||
|
#The rate at which seeds drop from leaves.
|
||||||
|
#Range: 0.0 ~ 64.0
|
||||||
|
leavesSeedDropRate = 1.0
|
||||||
|
#The rate at which seeds voluntarily drop from branches
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
voluntarySeedDropRate = 0.01
|
||||||
|
#The rate at which seeds voluntarily plant themselves in their ideal biomes
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
seedPlantRate = 0.1666666716337204
|
||||||
|
#Ticks before a seed in the world attempts to plant itself or despawn. 1200 = 1 minute
|
||||||
|
#Range: 0 ~ 6000
|
||||||
|
timeToLive = 1200
|
||||||
|
#If enabled then seeds will only voluntarily plant themselves in forest-like biomes.
|
||||||
|
seedOnlyForest = true
|
||||||
|
#The minimum forestness that non-forest-like biomes can have. 0 = is not at all a forest, 1 = may as well be a forest. Can be fractional.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
seedMinForestness = 0.0
|
||||||
|
|
||||||
|
#Tree Settings
|
||||||
|
[trees]
|
||||||
|
#Factor that multiplies the rate at which trees grow. Use at own risk
|
||||||
|
#Range: 0.0 ~ 16.0
|
||||||
|
growthMultiplier = 0.5
|
||||||
|
#Factor that multiplies the wood returned from harvesting a tree. You cheat.
|
||||||
|
#Range: 0.0 ~ 128.0
|
||||||
|
harvestMultiplier = 1.0
|
||||||
|
#Maximum harvesting hardness that can be calculated. Regardless of tree thickness.
|
||||||
|
#Range: 1.0 ~ 200.0
|
||||||
|
maxTreeHardness = 20.0
|
||||||
|
#Do X growth cycles at once while ignoring (X-1)/X attempts. Higher numbers can improve client side performance but too high can make trees grow wierd.
|
||||||
|
#Range: 1 ~ 8
|
||||||
|
growthFolding = 2
|
||||||
|
#If enabled then sticks will be dropped for partial logs
|
||||||
|
dropSticks = true
|
||||||
|
#Scales the growth for the environment. 0.5f is nominal. 0.0 trees only grow in their native biome. 1.0 trees grow anywhere like they are in their native biome
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
scaleBiomeGrowthRate = 0.5
|
||||||
|
#The chance of a tree on depleted soil to die. 1/256(~0.004) averages to about 1 death every 16 minecraft days
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
diseaseChance = 0.004
|
||||||
|
#The maximum radius of a branch that is allowed to postRot away. 8 = Full block size. 24 = Full 3x3 thick size. Set to 0 to prevent rotting
|
||||||
|
#Range: 0 ~ 24
|
||||||
|
maxBranchRotRadius = 7
|
||||||
|
#How much harder it is to destroy a rooty block compared to its non-rooty state
|
||||||
|
#Range: 0.0 ~ 128.0
|
||||||
|
rootyBlockHardnessMultiplier = 40.0
|
||||||
|
#Options for how oak trees generate in swamps. ROOTED: Swamp oak trees will generate on shallow water with mangrove-like roots. SUNK: Swamp oak trees will generate on shallow water one block under the surface. DISABLED: Swamp oaks will not generate on water.
|
||||||
|
#Allowed Values: ROOTED, SUNK, DISABLED
|
||||||
|
swampOaksInWater = "ROOTED"
|
||||||
|
#The amount of growth pulses to send when bone meal is applied to a tree. Warning: setting values higher than 64 is not recommended other than for testing purposes.
|
||||||
|
#Range: 1 ~ 512
|
||||||
|
boneMealGrowthPulses = 1
|
||||||
|
|
||||||
|
#Interaction Settings
|
||||||
|
[interaction]
|
||||||
|
#If enabled all leaves will be passable
|
||||||
|
isLeavesPassable = false
|
||||||
|
#If enabled player movement on leaves will not be enhanced
|
||||||
|
vanillaLeavesCollision = true
|
||||||
|
#If enabled then thinner branches can be climbed
|
||||||
|
enableBranchClimbling = true
|
||||||
|
#If enabled players receive reduced fall damage on leaves at the expense of the block(s) destruction
|
||||||
|
canopyCrash = true
|
||||||
|
#Damage dealt to the axe item when cutting a tree down. VANILLA: Standard 1 Damage. THICKNESS: By Branch/Trunk Thickness. VOLUME: By Tree Volume.
|
||||||
|
#Allowed Values: VANILLA, THICKNESS, VOLUME
|
||||||
|
axeDamageMode = "THICKNESS"
|
||||||
|
#If enabled then trees will fall over when harvested
|
||||||
|
enableFallingTrees = true
|
||||||
|
#If enabled then trees will harm living entities when falling
|
||||||
|
enableFallingTreeDamage = true
|
||||||
|
#Multiplier for damage incurred by a falling tree
|
||||||
|
#Range: 0.0 ~ 100.0
|
||||||
|
fallingTreeDamageMultiplier = 1.0
|
||||||
|
#If enabled the Dirt Bucket will place a dirt block on right-click
|
||||||
|
dirtBucketPlacesDirt = true
|
||||||
|
#If enabled then improperly broken trees(not by an entity) will still drop wood.
|
||||||
|
sloppyBreakDrops = false
|
||||||
|
#The minimum radius a branch must have before its able to be stripped. 8 = Full block size. Set to 0 to disable stripping trees
|
||||||
|
#Range: 0 ~ 24
|
||||||
|
minRadiusForStrip = 6
|
||||||
|
#If enabled, stripping a branch will decrease its radius by one
|
||||||
|
enableStripRadiusReduction = true
|
||||||
|
#Sets the default for whether or not fruit growing from dynamic trees can be bone-mealed. Note that this is a default; it can be overridden by the individual fruit.
|
||||||
|
canBoneMealFruit = false
|
||||||
|
#Sets the default for whether or not pods growing from dynamic trees can be bone-mealed. Note that this is a default; it can be overridden by the individual pod.
|
||||||
|
canBoneMealPods = true
|
||||||
|
#If enabled, dynamic sapling blocks will drop their seed when broken.
|
||||||
|
dynamicSaplingDrops = true
|
||||||
|
|
||||||
|
#World Generation Settings
|
||||||
|
[world]
|
||||||
|
#Randomly generate podzol under select trees like spruce.
|
||||||
|
podzolGen = true
|
||||||
|
#World Generation produces Dynamic Trees instead of Vanilla trees.
|
||||||
|
worldGen = true
|
||||||
|
#Blacklist of dimension registry names for disabling Dynamic Tree worldgen
|
||||||
|
dimensionsBlacklist = []
|
||||||
|
|
||||||
|
#Debug Settings
|
||||||
|
[debug]
|
||||||
|
#Enable to mark tree spawn locations with concrete circles.
|
||||||
|
debug = false
|
||||||
|
|
74
index.toml
74
index.toml
@ -46,7 +46,7 @@ hash = "4d1b1fb5cb5441c0579e67c0159a14a0ec0c393db1e378ec81efdb946e964c0a"
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "config/fancymenu/customization/um-mainmenu.txt"
|
file = "config/fancymenu/customization/um-mainmenu.txt"
|
||||||
hash = "3f60dafea080e9e6eec5f9dc2639dc680fe0b694680c5f00737955c44079c9d7"
|
hash = "ade2a3b030a32ec055c5d6f143ce4d3cdf5911893f59a82ceb0bbb81abd0db6b"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "config/fancymenu/customization/um-multiplayer-menu.txt"
|
file = "config/fancymenu/customization/um-multiplayer-menu.txt"
|
||||||
@ -88,6 +88,10 @@ hash = "f576a50dc985b50ebae7fa8ec8b4834aaf68410fa5c953700f42c3d6def1e9c8"
|
|||||||
file = "config/zombieawareness/MobLists.toml"
|
file = "config/zombieawareness/MobLists.toml"
|
||||||
hash = "1bb95c896ad2b6972b87e4f25438c6170c0fee9a4596a42191f7623bd2b32dfb"
|
hash = "1bb95c896ad2b6972b87e4f25438c6170c0fee9a4596a42191f7623bd2b32dfb"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "defaultconfigs/dynamictrees-server.toml"
|
||||||
|
hash = "e287b19d5b8f239128274a3a09fa103e9618642e6ec2db6544d27d6f6cd493ff"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "defaultconfigs/fastleafdecay-server.toml"
|
file = "defaultconfigs/fastleafdecay-server.toml"
|
||||||
hash = "fdd72ecae7321f7420b4b333e49964904e3059b1b95924f2643040b635427555"
|
hash = "fdd72ecae7321f7420b4b333e49964904e3059b1b95924f2643040b635427555"
|
||||||
@ -195,7 +199,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/attributefix.pw.toml"
|
file = "mods/attributefix.pw.toml"
|
||||||
hash = "ae8887615e5e14d52bd739ce195044faea6308d748dc7bc996f005630a11f39d"
|
hash = "a5823eed363dcbf221b6d0e919b111f0a5676338967a2a599c7cb948ca24223d"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -275,7 +279,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/cc-tweaked.pw.toml"
|
file = "mods/cc-tweaked.pw.toml"
|
||||||
hash = "9a0923ead8905649bc1260301508dc349ec7dd134fd8278a67e144d1f3ed68df"
|
hash = "d9a854dc615bafee94247c2ad9e9d794f291c37cd03b61b9323222ad4a4a96e5"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -285,7 +289,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/cloth-config.pw.toml"
|
file = "mods/cloth-config.pw.toml"
|
||||||
hash = "775ba9db8af593510ab38e497e4bed1aa5dcd7cae8cdd1d6a2dbe693c28de8fa"
|
hash = "5b8a438c04feeceefcebb4fd25b8f3db41930a0f6d5aa252b61a78382954da89"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -305,7 +309,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/collective.pw.toml"
|
file = "mods/collective.pw.toml"
|
||||||
hash = "1584c24561d1b84c8a0be57cdb1c36d4330014ffa43873d030d0ea191ec89c54"
|
hash = "bd4c1da41f5e44004db0920732d151566f06631bf5c0579092e15d0ddc688a52"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -325,7 +329,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/connected-glass.pw.toml"
|
file = "mods/connected-glass.pw.toml"
|
||||||
hash = "9a70ec2e748289f8087236ea6306b1e569c9d5d4cfd63ec2417a65a2cc30239b"
|
hash = "889195af13fba03b39b2fb0cd57000483a92d89a832484687456d1efdb7e3f08"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -403,11 +407,21 @@ file = "mods/cucumber.pw.toml"
|
|||||||
hash = "7de4d45649ea25e84a3c2b7f978f2d2610925cb2b40695523fea54a8b5c9bc13"
|
hash = "7de4d45649ea25e84a3c2b7f978f2d2610925cb2b40695523fea54a8b5c9bc13"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cull-leaves.pw.toml"
|
||||||
|
hash = "0c793add13628f1ebaea6843fe54c77e4e2a5c1e1ca88efe67612b4dcbf318a5"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/curios.pw.toml"
|
file = "mods/curios.pw.toml"
|
||||||
hash = "e6100fffd00b339e62efc3a6eaad54ca697b197813dff048d6dce2613676ef92"
|
hash = "e6100fffd00b339e62efc3a6eaad54ca697b197813dff048d6dce2613676ef92"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/cyclops-core.pw.toml"
|
||||||
|
hash = "eef17c3bd75fc8389b257e43086b2919206cd91ef87a693c2f3e444dfbaa8901"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/dark-utilities.pw.toml"
|
file = "mods/dark-utilities.pw.toml"
|
||||||
hash = "c64bdff1093c4040970ed3ceefc1c33f866e962d0aac38d2da499b6e59025f62"
|
hash = "c64bdff1093c4040970ed3ceefc1c33f866e962d0aac38d2da499b6e59025f62"
|
||||||
@ -468,6 +482,11 @@ file = "mods/entityculling.pw.toml"
|
|||||||
hash = "ea0d8c35669646b8d739a20b97a28c48744dcdea889ccc3c39ccd1431bf5cc6c"
|
hash = "ea0d8c35669646b8d739a20b97a28c48744dcdea889ccc3c39ccd1431bf5cc6c"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/exchangers.pw.toml"
|
||||||
|
hash = "9fcb307049012f270285f35f57b696d42aab81caf368b2124f1605098aaeccce"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/extra-disks.pw.toml"
|
file = "mods/extra-disks.pw.toml"
|
||||||
hash = "fa71fee27ddbe8c9fcad5554629334a4692157a5c43b91d2cd8e67e4bf87c484"
|
hash = "fa71fee27ddbe8c9fcad5554629334a4692157a5c43b91d2cd8e67e4bf87c484"
|
||||||
@ -508,6 +527,11 @@ file = "mods/findme.pw.toml"
|
|||||||
hash = "903937f8f4532be3ca2a749df02e72bc8a5b8602da7341d588539c5bdc8b2482"
|
hash = "903937f8f4532be3ca2a749df02e72bc8a5b8602da7341d588539c5bdc8b2482"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/flopper.pw.toml"
|
||||||
|
hash = "a6f7bde10bc2cc8dec6388bd8fb6832a3f0302d36106499084a796f0a4c55334"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/flywheel.pw.toml"
|
file = "mods/flywheel.pw.toml"
|
||||||
hash = "3f554b9633d477e4d2b6920d16ffb964fdc5ffef50953216a1d89132c96cba0a"
|
hash = "3f554b9633d477e4d2b6920d16ffb964fdc5ffef50953216a1d89132c96cba0a"
|
||||||
@ -568,6 +592,11 @@ file = "mods/gravestone-mod.pw.toml"
|
|||||||
hash = "a09762f8f867b06b55b564bf8bc570a308c8610890b8680f91a44217c751a0e6"
|
hash = "a09762f8f867b06b55b564bf8bc570a308c8610890b8680f91a44217c751a0e6"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/gunpowderlib.pw.toml"
|
||||||
|
hash = "c3fe231215973e1e60b69b2d3d3782a5380806158dfcf9d04409d284c8c91ad1"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/in-control.pw.toml"
|
file = "mods/in-control.pw.toml"
|
||||||
hash = "4166f109b5e11b34d6602e0913bbee457ded9bb10b85faeecec13f7a4843fd58"
|
hash = "4166f109b5e11b34d6602e0913bbee457ded9bb10b85faeecec13f7a4843fd58"
|
||||||
@ -625,7 +654,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/journeymap-integration.pw.toml"
|
file = "mods/journeymap-integration.pw.toml"
|
||||||
hash = "f8c78f9eef3ce31cc182a1d0d12c93c2e5258ca83e28fea0ec2a2fba999f9a9c"
|
hash = "466a8a478e5c45635b7b9b97b0ab04fcfeebf5e893731d9b5932bd207ff66b45"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -925,12 +954,12 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/pipez.pw.toml"
|
file = "mods/pipez.pw.toml"
|
||||||
hash = "2bed208b8d1204d4fc2a56d4a1f8e39a058cb5c1c71dbb1252baa4b5a4dfc767"
|
hash = "403cc027e5544af23af67df5d206408adf049a66a2e479bb89da64e6a4452c92"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/placebo.pw.toml"
|
file = "mods/placebo.pw.toml"
|
||||||
hash = "9656604f85b22fe3c05f27a507ca7ec6f17b5745faea6382f865b2774c0bb909"
|
hash = "47ec4b07079902cb55717dc6a7c76eeab6c4272a6465ef02b00504f33cee4a08"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -955,7 +984,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/polymorph.pw.toml"
|
file = "mods/polymorph.pw.toml"
|
||||||
hash = "81fc77ad299e312f43f331ced50b17ef4db92b80992cc8131d0fd958e36c661c"
|
hash = "b004022582a154f5d55c1b7660a4075f37962783dc20af8f046afe3bbc839171"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -985,7 +1014,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/rechiseled.pw.toml"
|
file = "mods/rechiseled.pw.toml"
|
||||||
hash = "1a1a7194cd86bdb367c667dcd65b99772c0a3a2520107a8f0e9bc9b0e2a72d72"
|
hash = "89eb45544e887b9122b93308e38a18381975b2278b666bd53b1e1948988edba8"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -1140,12 +1169,12 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sophisticated-backpacks.pw.toml"
|
file = "mods/sophisticated-backpacks.pw.toml"
|
||||||
hash = "452ab15c598a5c9a58751f53f223feea2b775f25adad30a1836d9a1b4c51edd8"
|
hash = "1000f9959cc5c55b1842228be2717c145fa63925bd9a35213942a5f3857ff91a"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sophisticated-core.pw.toml"
|
file = "mods/sophisticated-core.pw.toml"
|
||||||
hash = "b9f1b6e9a34482cd84a4b359849ecdfdacb7de2c2a030ee1060e92ab476bd1a8"
|
hash = "f2aabb6fca1ed6ff68ace2c7e130f024a11c72ad3f2866c42ff4ef97b176ae7c"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -1180,7 +1209,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/supermartijn642s-config-lib.pw.toml"
|
file = "mods/supermartijn642s-config-lib.pw.toml"
|
||||||
hash = "4c9539a6d5f8e98809bc518b9ee8231b6c515c58a1f74d9b88b71a6fff26ba03"
|
hash = "61459805ead435a8cedf9f599978dce88354a4d3b37e41044f80343e2e9edd9e"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -1200,7 +1229,7 @@ metafile = true
|
|||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/tesseract.pw.toml"
|
file = "mods/tesseract.pw.toml"
|
||||||
hash = "fc1ecb1250e8e7ba720c19f5faf698f27e498610e154b7979ee44be4b116e4f5"
|
hash = "25ff63f99987deabb3cd87f92037e914f227cf32d02163c3c749e6e842289ec4"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
@ -1318,6 +1347,21 @@ file = "mods/zombie-awareness.pw.toml"
|
|||||||
hash = "d3b835c39de7ef5be71391333e8dec0d72ea44e1c5d24b7bea911769c5adf46c"
|
hash = "d3b835c39de7ef5be71391333e8dec0d72ea44e1c5d24b7bea911769c5adf46c"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "resourcepacks/better-leaves.pw.toml"
|
||||||
|
hash = "f32dba5c925680e4e7abd2ac564ebeeff22c18cfaa430ed8632a6418d72d8fa2"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "resourcepacks/cubic-sun-moon.pw.toml"
|
||||||
|
hash = "7d8e477e84602d82891c6eedac6783f47708346a8977c75d114e214c672cee58"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "resourcepacks/mandalas-gui-dark-mode.pw.toml"
|
||||||
|
hash = "de28256ad521de32cb7ce29e32c6fe4f17e37c927cb83b73e6de2f3d30224e44"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "scrumptious-assets/literally-nothing.png"
|
file = "scrumptious-assets/literally-nothing.png"
|
||||||
hash = "dfa42d8dae677507759811c5593fe37a84ae80cf5890ebb61d2494a73111a911"
|
hash = "dfa42d8dae677507759811c5593fe37a84ae80cf5890ebb61d2494a73111a911"
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "AttributeFix"
|
name = "AttributeFix"
|
||||||
filename = "AttributeFix-Forge-1.19.2-17.2.6.jar"
|
filename = "AttributeFix-Forge-1.19.2-17.2.7.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "b8521ee0107ead81e97d2889f0a26ae57f9029e2"
|
hash = "a70b6fc0aea412f33036f4a992449af6e49fd065"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4436598
|
file-id = 4635476
|
||||||
project-id = 280510
|
project-id = 280510
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "CC: Tweaked"
|
name = "CC: Tweaked"
|
||||||
filename = "cc-tweaked-1.19.2-1.101.2.jar"
|
filename = "cc-tweaked-1.19.2-1.101.3.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "979e334fb83681bbf8e815f4003e1b35ec962ebd"
|
hash = "e47b323a6965d2f5fbdc97f9b2fe56a406886ccf"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4395619
|
file-id = 4630524
|
||||||
project-id = 282001
|
project-id = 282001
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Cloth Config API"
|
name = "Cloth Config API"
|
||||||
filename = "cloth-config-8.2.88-forge.jar"
|
filename = "cloth-config-8.3.103-forge.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/Fw7B2c97/cloth-config-8.2.88-forge.jar"
|
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/EUyHCmUW/cloth-config-8.3.103-forge.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "fbd645755abc0dbe5eb1adeb5e649835294a769f"
|
hash = "f328e96b7cbe94fa73e1421a72959296e7698c5d"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "9s6osm5g"
|
mod-id = "9s6osm5g"
|
||||||
version = "Fw7B2c97"
|
version = "EUyHCmUW"
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Collective"
|
name = "Collective"
|
||||||
filename = "collective-1.19.2-6.62.jar"
|
filename = "collective-1.19.2-6.65.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "c51364169852fbbbfde2a97530c1de44621940a2"
|
hash = "c082347e764697d7972b81a3fade8bf43aa69553"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4601903
|
file-id = 4639340
|
||||||
project-id = 342584
|
project-id = 342584
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Connected Glass"
|
name = "Connected Glass"
|
||||||
filename = "connectedglass-1.1.6-forge-mc1.19.jar"
|
filename = "connectedglass-1.1.7-forge-mc1.19.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "af57e1996cd798437d5f76747fa28fd13f323fb1"
|
hash = "3c97a3012aa9044d81b28780abd4b3364c1ea7ff"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4293791
|
file-id = 4628996
|
||||||
project-id = 383129
|
project-id = 383129
|
||||||
|
13
mods/cull-leaves.pw.toml
Normal file
13
mods/cull-leaves.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Cull Leaves"
|
||||||
|
filename = "cullleaves-forge-3.0.1.jar"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/GNxdLCoP/versions/cx8ZZ7y9/cullleaves-forge-3.0.1.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "4fcad32828c1769c16692c5bbf9644e207c55d53"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "GNxdLCoP"
|
||||||
|
version = "cx8ZZ7y9"
|
13
mods/cyclops-core.pw.toml
Normal file
13
mods/cyclops-core.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Cyclops Core"
|
||||||
|
filename = "CyclopsCore-1.19.2-1.18.6.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/Z9DM0LJ4/versions/a5qnWkzL/CyclopsCore-1.19.2-1.18.6.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "36fed530e4179c389280b3e708bdb58943876b90"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "Z9DM0LJ4"
|
||||||
|
version = "a5qnWkzL"
|
13
mods/exchangers.pw.toml
Normal file
13
mods/exchangers.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Exchangers"
|
||||||
|
filename = "Exchangers-1.19.2-3.3.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "ce8d1ccddce1f7facf38ca6e8172beef3cac3250"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 4546621
|
||||||
|
project-id = 270183
|
13
mods/flopper.pw.toml
Normal file
13
mods/flopper.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Flopper"
|
||||||
|
filename = "Flopper-1.19.2-1.1.4.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/aTMAqQMY/versions/1.19.2-1.1.4/Flopper-1.19.2-1.1.4.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "e334fac31ebce50fff3c2f448b4d52680b9ecb1f"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "aTMAqQMY"
|
||||||
|
version = "iT0UAMva"
|
13
mods/gunpowderlib.pw.toml
Normal file
13
mods/gunpowderlib.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "GunpowderLib"
|
||||||
|
filename = "GunpowderLib-1.19.2-2.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "67e8e3d1782ae059b785b1f7f7cf9c7ec312d235"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 4523832
|
||||||
|
project-id = 356646
|
@ -1,13 +1,13 @@
|
|||||||
name = "JourneyMap Integration"
|
name = "JourneyMap Integration"
|
||||||
filename = "jmi-forge-1.19.2-0.13-33.jar"
|
filename = "jmi-forge-1.19.2-0.13-40.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "ae4849cbb25dc9580d98dbc947d27c49e7d27bab"
|
hash = "1f109b46fbca5e398745bbb8531521852f4e6986"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4443488
|
file-id = 4632884
|
||||||
project-id = 525447
|
project-id = 525447
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Pipez"
|
name = "Pipez"
|
||||||
filename = "pipez-1.19.2-1.1.2.jar"
|
filename = "pipez-1.19.2-1.1.3.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "bbc86ff6415261559e33cd8c4545ce0e8706ce23"
|
hash = "9ff06022eee3c0b4dea50f708e3e91fb7194f209"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4625951
|
file-id = 4629652
|
||||||
project-id = 443900
|
project-id = 443900
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Placebo"
|
name = "Placebo"
|
||||||
filename = "Placebo-1.19.2-7.2.0.jar"
|
filename = "Placebo-1.19.2-7.3.0.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "9184fdb71845b8ae3719810aa679ed6ba716f191"
|
hash = "add61ff9a2d1c81a1e99a1764460532a46e15cbb"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4546960
|
file-id = 4629583
|
||||||
project-id = 283644
|
project-id = 283644
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Polymorph (Fabric/Forge/Quilt)"
|
name = "Polymorph (Fabric/Forge/Quilt)"
|
||||||
filename = "polymorph-forge-0.46.3+1.19.2.jar"
|
filename = "polymorph-forge-0.46.4+1.19.2.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "e9c35add859bb9af5c875c87ae2397650120635b"
|
hash = "1af413b2432d785d2910b4817a7ded456f74744b"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4618423
|
file-id = 4629009
|
||||||
project-id = 388800
|
project-id = 388800
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Re-chiseled"
|
name = "Re-chiseled"
|
||||||
filename = "rechiseled-1.1.0a-forge-mc1.19.2.jar"
|
filename = "rechiseled-1.1.1-forge-mc1.19.2.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "9db53fbffae82b6a258649f720746524f27a32cf"
|
hash = "14d372e756ab45fadc767e9a860c7c5ace0a463a"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4598520
|
file-id = 4628247
|
||||||
project-id = 558998
|
project-id = 558998
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Sophisticated Backpacks"
|
name = "Sophisticated Backpacks"
|
||||||
filename = "sophisticatedbackpacks-1.19.2-3.18.53.868.jar"
|
filename = "sophisticatedbackpacks-1.19.2-3.18.55.889.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "8fb177da44d4841ec96db99965ee48021c115c65"
|
hash = "13538175c9b928371dad6ba138aa600c7d39685c"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4618524
|
file-id = 4637293
|
||||||
project-id = 422301
|
project-id = 422301
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Sophisticated Core"
|
name = "Sophisticated Core"
|
||||||
filename = "sophisticatedcore-1.19.2-0.5.77.346.jar"
|
filename = "sophisticatedcore-1.19.2-0.5.78.363.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "687a78fa64205e97742c709d5da1d10812ca688a"
|
hash = "885ef04cc63db0edecc5ad077abb17c4a9d9f86e"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4620054
|
file-id = 4634022
|
||||||
project-id = 618298
|
project-id = 618298
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "SuperMartijn642's Config Lib"
|
name = "SuperMartijn642's Config Lib"
|
||||||
filename = "supermartijn642configlib-1.1.6b-forge-mc1.19.jar"
|
filename = "supermartijn642configlib-1.1.7-forge-mc1.19.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/LN9BxssP/versions/1.1.6b-forge-mc1.19/supermartijn642configlib-1.1.6b-forge-mc1.19.jar"
|
url = "https://cdn.modrinth.com/data/LN9BxssP/versions/6Dhrrj9a/supermartijn642configlib-1.1.7-forge-mc1.19.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "15ddddd5facc0967345c0510092379d78eac071b"
|
hash = "4b24c38f7f7a09ff874dd58edaf1c5246f28c59a"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "LN9BxssP"
|
mod-id = "LN9BxssP"
|
||||||
version = "9pwSswPr"
|
version = "6Dhrrj9a"
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name = "Tesseract"
|
name = "Tesseract"
|
||||||
filename = "tesseract-1.0.34-forge-mc1.19.jar"
|
filename = "tesseract-1.0.35-forge-mc1.19.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/OUhp5O2m/versions/dImbxVsl/tesseract-1.0.34-forge-mc1.19.jar"
|
url = "https://cdn.modrinth.com/data/OUhp5O2m/versions/ZxGoSDwd/tesseract-1.0.35-forge-mc1.19.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "1e87256964950f3be932b734c11c645b8e0947fb"
|
hash = "dc00d31f3cf76efcb99ac4012813cc32171629db"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "OUhp5O2m"
|
mod-id = "OUhp5O2m"
|
||||||
version = "dImbxVsl"
|
version = "ZxGoSDwd"
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
name = "ScrumptiousCraft Um"
|
name = "ScrumptiousCraft Um"
|
||||||
author = "razage"
|
author = "razage"
|
||||||
version = "1.1.2"
|
version = "1.1.3"
|
||||||
pack-format = "packwiz:1.1.0"
|
pack-format = "packwiz:1.1.0"
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "200f20cfbd276a415f93f45e552ac71013b3112ec931d36c54a9a010fb0153d0"
|
hash = "aca80957584366f558c91a65bddf193197c7bed78d40dfb1e8d4fb31554d1300"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
forge = "43.2.8"
|
forge = "43.2.8"
|
||||||
|
13
resourcepacks/better-leaves.pw.toml
Normal file
13
resourcepacks/better-leaves.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Motschen's Better Leaves"
|
||||||
|
filename = "Better-Leaves-7.1-1.19+.zip"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/uvpymuxq/versions/PZcMlF3o/Better-Leaves-7.1-1.19%2B.zip"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "c8868fe6534cada3c667af02593504dae339a0b9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "uvpymuxq"
|
||||||
|
version = "PZcMlF3o"
|
13
resourcepacks/cubic-sun-moon.pw.toml
Normal file
13
resourcepacks/cubic-sun-moon.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Cubic Sun & Moon"
|
||||||
|
filename = "cubic-sun-moon-v1-6-1.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/g4bSYbrU/versions/qfjv2fkq/cubic-sun-moon-v1-6-1.zip"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "88774da943772873b824fb8fbeb827375367a4a6"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "g4bSYbrU"
|
||||||
|
version = "qfjv2fkq"
|
13
resourcepacks/mandalas-gui-dark-mode.pw.toml
Normal file
13
resourcepacks/mandalas-gui-dark-mode.pw.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
name = "Mandala's GUI - Dark mode"
|
||||||
|
filename = "MandalasGUI_Legacy+Modded_Dakmode_v3.8.8.zip"
|
||||||
|
side = "client"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/h6zxsNVF/versions/Xm76BNdx/MandalasGUI_Legacy%2BModded_Dakmode_v3.8.8.zip"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "39476ac05dfa87af81fa5aa48fd4dbf6ce474b49"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "h6zxsNVF"
|
||||||
|
version = "Xm76BNdx"
|
Loading…
x
Reference in New Issue
Block a user