Skip to content

Commit

Permalink
fix accidental pruning of serverOfficial
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Jul 31, 2024
1 parent de60883 commit 0ed1f8e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ class MappingsProvider(project: Project, minecraft: MinecraftConfig, subKey: Str
EnvType.JOINED -> {
mapNamespace("client", "clientOfficial")
mapNamespace("server", "serverOfficial")
provides("serverOfficial" to false)
requires("clientOfficial")
}
}
Expand Down Expand Up @@ -307,6 +308,8 @@ class MappingsProvider(project: Project, minecraft: MinecraftConfig, subKey: Str
EnvType.JOINED -> {
mapNamespace("client", "clientOfficial")
mapNamespace("server", "serverOfficial")
requires("clientOfficial")
provides("serverOfficial" to false)
}
}
}
Expand Down

0 comments on commit 0ed1f8e

Please sign in to comment.