mirror of
https://github.com/MilkBowl/Vault.git
synced 2025-01-15 20:51:30 +01:00
removed Pex repo as it often goes offline. updated PEX jar to latest
1.19.2
This commit is contained in:
parent
1174c131b8
commit
88e3c9542b
Binary file not shown.
8
pom.xml
8
pom.xml
@ -170,7 +170,9 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>ru.tehkode</groupId>
|
<groupId>ru.tehkode</groupId>
|
||||||
<artifactId>PermissionsEx</artifactId>
|
<artifactId>PermissionsEx</artifactId>
|
||||||
<version>1.20-SNAPSHOT</version>
|
<version>1.19.2</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${project.basedir}/lib/PermissionsEx.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>de.bananaco.permissions.Permissions</groupId>
|
<groupId>de.bananaco.permissions.Permissions</groupId>
|
||||||
@ -295,9 +297,5 @@ iConomy 4,5,6 BOSEconomy 6/7, EssentialsEcon, 3Co, MultiConomy, MineConomy, Econ
|
|||||||
<id>bukkit-repo</id>
|
<id>bukkit-repo</id>
|
||||||
<url>http://repo.bukkit.org/content/groups/public/</url>
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
|
||||||
<id>tehkode-repo</id>
|
|
||||||
<url>http://repo.tehkode.ru/repository/bukkit-plugins/</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
</project>
|
</project>
|
||||||
|
@ -90,13 +90,14 @@ public class ItemInfo {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (obj == null)
|
if (obj == null) {
|
||||||
return false;
|
return false;
|
||||||
else if (this == obj)
|
} else if (this == obj) {
|
||||||
return true;
|
return true;
|
||||||
else if (!(obj instanceof ItemInfo))
|
} else if (!(obj instanceof ItemInfo)) {
|
||||||
return false;
|
return false;
|
||||||
else
|
} else {
|
||||||
return ((ItemInfo) obj).material == this.material && ((ItemInfo) obj).subTypeId == this.subTypeId;
|
return ((ItemInfo) obj).material == this.material && ((ItemInfo) obj).subTypeId == this.subTypeId;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user