mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-12 03:57:03 +00:00
Tiny cleanup
This commit is contained in:
parent
7c12b2e0b3
commit
e24f404e42
1 changed files with 3 additions and 2 deletions
|
@ -234,7 +234,8 @@ public class DisguiseUtilities {
|
||||||
|
|
||||||
public static TargetedDisguise[] getDisguises(UUID entityId) {
|
public static TargetedDisguise[] getDisguises(UUID entityId) {
|
||||||
if (getDisguises().containsKey(entityId)) {
|
if (getDisguises().containsKey(entityId)) {
|
||||||
return getDisguises().get(entityId).toArray(new TargetedDisguise[getDisguises().get(entityId).size()]);
|
HashSet<TargetedDisguise> disguises = getDisguises().get(entityId);
|
||||||
|
return disguises.toArray(new TargetedDisguise[disguises.size()]);
|
||||||
}
|
}
|
||||||
return new TargetedDisguise[0];
|
return new TargetedDisguise[0];
|
||||||
}
|
}
|
||||||
|
@ -402,7 +403,7 @@ public class DisguiseUtilities {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Resends
|
* @param Resends
|
||||||
* the entity to all the watching players, which is where the magic begins
|
* the entity to this specific player
|
||||||
*/
|
*/
|
||||||
public static void refreshTracker(TargetedDisguise disguise, String player) {
|
public static void refreshTracker(TargetedDisguise disguise, String player) {
|
||||||
if (disguise.getEntity() != null && disguise.getEntity().isValid()) {
|
if (disguise.getEntity() != null && disguise.getEntity().isValid()) {
|
||||||
|
|
Loading…
Reference in a new issue