Skip to content

Commit

Permalink
use mc version 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
burdoto committed Jul 3, 2022
1 parent 33c4184 commit 15a4f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vars.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ ext {
pluginDescription = 'Jump N Run Minigame'

snapshot = project.version.endsWith('SNAPSHOT')
mcVersion = '1.16.4'
mcVersionMj = mcVersion.substring(0, mcVersion.lastIndexOf('.'))
mcVersion = '1.19'
mcVersionMj = mcVersion.split('\\.').length == 3 ? mcVersion.substring(0, mcVersion.lastIndexOf('.')) : mcVersion
spigotRC = 'R0.1'
pluginVersion = version.replace("-SNAPSHOT", "-alpha")

Expand Down

0 comments on commit 15a4f8b

Please sign in to comment.