Skip to content

Commit

Permalink
fix #7; update to 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
plusls committed Jun 25, 2021
1 parent 231fc78 commit 8f414de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ repositories {
maven {
url 'https://masa.dy.fi/maven'
}
maven {
url 'https://dl.bintray.com/earthcomputer/mods'
}
}

loom {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.11.6

# Mod Properties
mod_version = 1.1.5
mod_version = 1.1.6
maven_group = io.github.plusls
archives_base_name = MasaGadget

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private static Identifier id(String path) {
}

public static String lowVersionStructureName(String name) {
String splitResult[] = name.split("_");
String[] splitResult = name.split("_");
for (int i = 0; i < splitResult.length; ++i) {
splitResult[i] = splitResult[i].substring(0, 1).toUpperCase() + splitResult[i].substring(1);
}
Expand Down Expand Up @@ -97,10 +97,7 @@ private static class ClientboundIdentifierCustomPayloadListener implements ICust
@Override
public void onCustomPayload(ICustomPayloadEvent<Identifier> event) {
Identifier channel = event.getChannel();
if (channel.equals(ADD_BOUNDING_BOX_V2)) {
MasaGadgetMod.LOGGER.debug("Multiconnect recv bbor:ADD_BOUNDING_BOX_V2");
bborAddBoundingBoxV2Handler(event.getData());
}
bborProtocolHandler(channel, event.getData());
}
}

Expand Down

0 comments on commit 8f414de

Please sign in to comment.