Possible fix for #68
This commit is contained in:
parent
4be5fe010f
commit
e73febd7f4
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class ModCompileRemapper {
|
||||||
version = ((ModuleComponentIdentifier) artifact.getId().getComponentIdentifier()).getVersion();
|
version = ((ModuleComponentIdentifier) artifact.getId().getComponentIdentifier()).getVersion();
|
||||||
} else {
|
} else {
|
||||||
group = "net.fabricmc.synthetic";
|
group = "net.fabricmc.synthetic";
|
||||||
name = artifact.getId().getComponentIdentifier().getDisplayName().replace('.', '-');
|
name = artifact.getId().getComponentIdentifier().getDisplayName().replace('.', '-').replace(" :", "-");
|
||||||
version = "0.1.0";
|
version = "0.1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue