File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/java/parallelmc/parallelutils Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ plugins {
88
99group = ' org.parallelmc'
1010
11- version = ' 2.0.3 '
11+ version = ' 2.0.4 '
1212description = ' A set of utilities and features for use on the Parallel Minecraft server'
1313
1414java {
Original file line number Diff line number Diff line change 22
33public class Constants {
44
5- public static final Version VERSION = new Version (2 , 0 , 3 );
5+ public static final Version VERSION = new Version (2 , 0 , 4 );
66 public static final String PLUGIN_NAME = "ParallelUtils" ;
77 public static final String DEFAULT_WORLD = "world2" ;
88}
Original file line number Diff line number Diff line change 2424import parallelmc .parallelutils .Parallelutils ;
2525import parallelmc .parallelutils .modules .parallelchat .ParallelChat ;
2626import parallelmc .parallelutils .modules .paralleltutorial .commands .*;
27+ import parallelmc .parallelutils .modules .paralleltutorial .handlers .OnJoinAfterOnLeave ;
2728import parallelmc .parallelutils .modules .paralleltutorial .handlers .OnLeaveDuringTutorial ;
2829import parallelmc .parallelutils .modules .paralleltutorial .handlers .OnSpectatorTeleport ;
2930import parallelmc .parallelutils .modules .paralleltutorial .scripting .Instruction ;
@@ -82,6 +83,7 @@ public void onEnable() {
8283
8384 manager .registerEvents (new OnSpectatorTeleport (), puPlugin );
8485 manager .registerEvents (new OnLeaveDuringTutorial (), puPlugin );
86+ manager .registerEvents (new OnJoinAfterOnLeave (), puPlugin );
8587
8688 puPlugin .getCommand ("starttutorial" ).setExecutor (new ParallelStartTutorial ());
8789 puPlugin .getCommand ("listtutorials" ).setExecutor (new ParallelListTutorials ());
You can’t perform that action at this time.
0 commit comments