Skip to content

Commit

Permalink
Merge pull request #20
Browse files Browse the repository at this point in the history
Fix TabCompleteListener error on < 1.12 servers
  • Loading branch information
Syrent authored Nov 2, 2022
2 parents 8c52ca0 + 85aa39d commit 28efba3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=3.3.0
version=3.3.1
plugin-name=VelocityVanish
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ class VelocityVanishSpigot : RUoMPlugin() {
PlayerJoinListener(this)
PlayerQuitListener(this)
PlayerInteractListener(this)
TabCompleteListener(this)
PostVanishListener(this)
PostUnVanishListener(this)
PlayerTeleportListener(this)
if (ServerVersion.supports(12)) TabCompleteListener(this)
if (ServerVersion.supports(19)) BlockReceiveGameListener(this)
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/velocity-plugin.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"id":"velocityvanish","name":"VelocityVanish","version":"3.3.0","description":"Vanish plugin for velocity servers","url":"syrent.ir","authors":["Syrent"],"dependencies":[],"main":"ir.syrent.velocityvanish.velocity.VelocityVanish"}
{"id":"velocityvanish","name":"VelocityVanish","version":"3.3.1","description":"Vanish plugin for velocity servers","url":"syrent.ir","authors":["Syrent"],"dependencies":[],"main":"ir.syrent.velocityvanish.velocity.VelocityVanish"}

0 comments on commit 28efba3

Please sign in to comment.