File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed
java/com/terraformersmc/cinderscapes Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ archive_name=cinderscapes
66minecraft_version =1.16.5
77yarn_mappings =1.16.5+build.3
88loader_version =0.11.1
9- fabric_version =0.29.4 +1.16
9+ fabric_version =0.30.0 +1.16
1010
1111# Terraform modules
1212terraform_shapes_api_version =1.0.1
@@ -15,7 +15,7 @@ terraform_wood_api_version=1.0.1
1515# Other Things
1616clothconfig_version =4.8.3
1717autoconfig_version =3.3.1
18- modmenu_version =1.14.15
18+ modmenu_version =1.16.1
1919vistas_version =1.0.2+build.7
2020
2121# Project Metadata
Original file line number Diff line number Diff line change 1717import net .minecraft .world .WorldAccess ;
1818import net .minecraft .world .WorldView ;
1919
20+ import java .util .Locale ;
21+
2022public class GhastlyEctoplasmBlock extends Block {
2123 public static final EnumProperty <GhastlyEctoplasmBlock .Type > TYPE = EnumProperty .of ("type" , GhastlyEctoplasmBlock .Type .class );
2224
@@ -78,7 +80,7 @@ public enum Type implements StringIdentifiable {
7880
7981 @ Override
8082 public String asString () {
81- return this .toString ().toLowerCase ();
83+ return this .toString ().toLowerCase (Locale . ROOT );
8284 }
8385 }
8486}
Original file line number Diff line number Diff line change 11package com .terraformersmc .cinderscapes .integration ;
22
33import com .terraformersmc .cinderscapes .config .CinderscapesConfig ;
4- import io . github . prospector .modmenu .api .ConfigScreenFactory ;
5- import io . github . prospector .modmenu .api .ModMenuApi ;
4+ import com . terraformersmc .modmenu .api .ConfigScreenFactory ;
5+ import com . terraformersmc .modmenu .api .ModMenuApi ;
66import me .sargunvohra .mcmods .autoconfig1u .AutoConfig ;
77
88public class ModMenuIntegration implements ModMenuApi {
Original file line number Diff line number Diff line change 1818 " Slice"
1919 ],
2020 "contact" : {
21- "sources" : " https://github.com/TerraformersMC/Cinderscapes"
21+ "homepage" : " https://www.curseforge.com/minecraft/mc-mods/cinderscapes" ,
22+ "sources" : " https://github.com/TerraformersMC/Cinderscapes" ,
23+ "issues" : " https://github.com/TerraformersMC/Cinderscapes/issues"
2224 },
2325 "license" : " LGPLv3" ,
2426 "icon" : " assets/cinderscapes/icon.png" ,
4244 "fabric" : " >=0.25.0" ,
4345 "minecraft" : " >=1.16-"
4446 },
47+ "breaks" : {
48+ "modmenu" : " <1.15.0"
49+ },
4550 "custom" : {
4651 "modupdater" : {
4752 "strategy" : " curseforge" ,
You can’t perform that action at this time.
0 commit comments