File tree Expand file tree Collapse file tree
src/main/java/at/joestr/cartjets Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88## Installtion
99
10- Head to over the [ latest release] ( https://github.com/joestrhq/CartJets/releases/tag/v2.0.0 ) .
10+ Head to over the [ latest release] ( https://github.com/joestrhq/CartJets/releases/tag/v2.1.1 ) .
1111
12- Download the ` jar ` file (currently ` cartjets-2.1.0 -shaded.jar ` ).
12+ Download the ` jar ` file (currently ` cartjets-2.1.1 -shaded.jar ` ).
1313
1414Drop the downloaded ` jar ` file into your Spigot ` plugins ` folder.
1515
Original file line number Diff line number Diff line change 77 <modelVersion >4.0.0</modelVersion >
88 <groupId >at.joestr</groupId >
99 <artifactId >cartjets</artifactId >
10- <version >2.1.0 </version >
10+ <version >2.1.1 </version >
1111 <packaging >jar</packaging >
1212
1313 <name >CartJets</name >
126126 <dependency >
127127 <groupId >org.spigotmc</groupId >
128128 <artifactId >spigot-api</artifactId >
129- <version >1.19.1 -R0.1-SNAPSHOT</version >
129+ <version >1.19.2 -R0.1-SNAPSHOT</version >
130130 <scope >provided</scope >
131131 </dependency >
132132 <dependency >
153153 <version >3.1.0</version >
154154 <scope >compile</scope >
155155 </dependency >
156+ <dependency >
157+ <groupId >org.bstats</groupId >
158+ <artifactId >bstats-bukkit</artifactId >
159+ <version >3.0.0</version >
160+ <scope >compile</scope >
161+ </dependency >
156162 </dependencies >
157163
158164 <build >
258264 <pattern >com.vdurmont.semver4j</pattern >
259265 <shadedPattern >at.joestr.cartjets.thirdparty.com.vdurmont.semver4j</shadedPattern >
260266 </relocation >
267+ <relocation >
268+ <pattern >org.bstats</pattern >
269+ <shadedPattern >at.joestr.cartjets.thirdparty.org.bstats</shadedPattern >
270+ </relocation >
261271 </relocations >
262272 </configuration >
263273 </execution >
Original file line number Diff line number Diff line change 3636import java .util .Map ;
3737import java .util .UUID ;
3838import java .util .logging .Level ;
39+ import org .bstats .bukkit .Metrics ;
3940import org .bukkit .Bukkit ;
4041import org .bukkit .command .PluginCommand ;
4142import org .bukkit .command .TabExecutor ;
@@ -69,6 +70,8 @@ public void onLoad() {
6970 public void onEnable () {
7071 super .onEnable ();
7172
73+ Metrics metrics = new Metrics (this , 16603 );
74+
7275 this .perUserModels = new HashMap <>();
7376 this .commandMap = new HashMap <>();
7477
You can’t perform that action at this time.
0 commit comments