Skip to content

Commit

Permalink
Some match registry fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
azzy committed Nov 2, 2022
1 parent 176c3d7 commit 59687ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ max_errors=400
fabric_version=0.58.0+1.18.2

# Mod Properties
mod_version = 1.7.2.INDEV-1
mod_version = 1.7.2.INDEV-2
# todo change
maven_group = azzy.fabric
archives_base_name = incubus-core
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ public class IncubusMatches {

public static void init() {
MatchRegistry.registerInternal("int", new IntMatch.Factory());
MatchRegistry.registerInternal("intRange", new IntMatch.Factory());
MatchRegistry.registerInternal("float", new IntMatch.Factory());
MatchRegistry.registerInternal("string", new IntMatch.Factory());
MatchRegistry.registerInternal("intRange", new IntRangeMatch.Factory());
MatchRegistry.registerInternal("float", new FloatMatch.Factory());
MatchRegistry.registerInternal("string", new StringMatch.Factory());
}
}

0 comments on commit 59687ac

Please sign in to comment.