mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-24 17:30:59 -05:00
Added missing branch for CONFLICTING dependencies
This commit is contained in:
parent
ee9458a1c4
commit
baebb4e594
1 changed files with 2 additions and 2 deletions
|
@ -78,12 +78,12 @@ function fromDependencyType(type: DependencyType): ModrinthDependencyType | unde
|
|||
switch (type) {
|
||||
case DependencyType.REQUIRED:
|
||||
return ModrinthDependencyType.REQUIRED;
|
||||
case DependencyType.OPTIONAL:
|
||||
case DependencyType.RECOMMENDED:
|
||||
return ModrinthDependencyType.OPTIONAL;
|
||||
case DependencyType.EMBEDDED:
|
||||
return ModrinthDependencyType.EMBEDDED;
|
||||
case DependencyType.OPTIONAL:
|
||||
return ModrinthDependencyType.OPTIONAL;
|
||||
case DependencyType.CONFLICTING:
|
||||
case DependencyType.INCOMPATIBLE:
|
||||
return ModrinthDependencyType.INCOMPATIBLE;
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue