Skip to content

Commit

Permalink
1.3.5.1
Browse files Browse the repository at this point in the history
* Marked ProtocolSupport & ViaVersion as "provided" so they are not compiled into your plugin!
  • Loading branch information
purplexdev committed Jun 25, 2020
1 parent 18f3f13 commit bd872bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.retrooper</groupId>
<artifactId>packetevents</artifactId>
<version>1.3.5</version>
<version>1.3.5.1</version>
<packaging>jar</packaging>
<name>packetevents</name>
<properties>
Expand Down Expand Up @@ -189,12 +189,14 @@
<groupId>us.myles</groupId>
<artifactId>viaversion</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.github.ProtocolSupport</groupId>
<artifactId>ProtocolSupport</artifactId>
<version>4fdd683</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
import java.lang.reflect.Field;

public final class WrappedPacketInUseEntity extends WrappedPacket {
private static Class<?> useEntityClass;
private static Class<?> entityClass;
private static Class<?> useEntityClass, entityClass;
private static final Field[] fields = new Field[2];

static {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;

public final class PlayerAbilitiesUtils {
final class PlayerAbilitiesUtils {

public static Class<?> playerAbilitiesClass;

Expand Down

0 comments on commit bd872bc

Please sign in to comment.