Skip to content

Commit

Permalink
update to 0.1.3-alpha.1 引入 pca 协议 的 break change
Browse files Browse the repository at this point in the history
  • Loading branch information
plusls committed Jan 7, 2021
1 parent fdd7c74 commit 2fc87e1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1G
carpet_core_version=1.4.21+v201216

# Mod Properties
mod_version = 0.1.2-alpha.3
mod_version = 0.1.3-alpha.1
maven_group = net.fabricmc
archives_base_name = plusls-carpet-addition

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/plusls/carpet/PcaMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


public class PcaMod implements CarpetExtension {
public static final String MODID = "plusls_carpet_addition_mod";
public static final String MODID = "pca";
public static final Logger LOGGER = LogManager.getLogger("PcAMod");
@Nullable
public static MinecraftServer server = null;
Expand Down Expand Up @@ -114,7 +114,7 @@ public Map<String, String> canHasTranslations(String lang) {
try {
dataJSON = IOUtils.toString(
Objects.requireNonNull(Translations.class.getClassLoader().getResourceAsStream(
String.format("assets/plusls_carpet_addition_mod/lang/%s.json", lang))),
String.format("assets/pca/lang/%s.json", lang))),
StandardCharsets.UTF_8);
} catch (NullPointerException | IOException e) {
return null;
Expand Down
File renamed without changes
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"id": "plusls_carpet_addition_mod",
"id": "pca",
"version": "${version}",

"name": "Plusls carpet addition mod",
Expand All @@ -14,15 +14,15 @@
},

"license": "CC0-1.0",
"icon": "assets/plusls_carpet_addition_mod/icon.png",
"icon": "assets/pca/icon.png",

"environment": "*",
"entrypoints": {
"main": [
]
},
"mixins": [
"plusls_carpet_addition_mod.mixins.json"
"pca.mixins.json"
],

"depends": {
Expand Down
File renamed without changes.

0 comments on commit 2fc87e1

Please sign in to comment.