Skip to content

Commit

Permalink
Prepare for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Jun 28, 2023
1 parent ca0ed0e commit 19dbec6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ minecraft_version=1.20
yarn_mappings=1.20+build.1
loader_version=0.14.21
# Mod Properties
mod_version=0.1.3_alpha
mod_version=0.1.4_alpha
maven_group=com.connorcode
archives_base_name=sigma-utils
# Dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

@Mixin(TitleScreen.class)
public class TitleScreenMixin extends Screen {
long updateTime;
@Shadow
@Nullable
private SplashTextRenderer splashText;
long updateTime;

protected TitleScreenMixin(Text title) {
super(title);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void init() {
if (!this.enabled) return;
if (!(packet.get() instanceof TitleS2CPacket title)) return;
var regex = Pattern.compile(endRegex.value());
if (!regex.matcher(title.getTitle().getString()).matches()) return;
if (!regex.matcher(title.getTitle().getString()).matches()) {}

// wdl
});
Expand Down

0 comments on commit 19dbec6

Please sign in to comment.