mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-23 19:16:34 +01:00
Fix compile errror
This commit is contained in:
parent
8902579c69
commit
b31a9532f7
@ -90,9 +90,9 @@ public class HumanController extends AbstractEntityController {
|
|||||||
if (cached != null) {
|
if (cached != null) {
|
||||||
profile.getProperties().put("textures", cached);
|
profile.getProperties().put("textures", cached);
|
||||||
} else {
|
} else {
|
||||||
Bukkit.getScheduler().runTaskAsynchronously(CitizensAPI.getPlugin(),
|
Bukkit.getScheduler().runTaskLaterAsynchronously(CitizensAPI.getPlugin(),
|
||||||
new SkinFetcher(new UUIDFetcher(skinUUID, npc), nmsWorld.getMinecraftServer().av(), npc),
|
new SkinFetcher(new UUIDFetcher(skinUUID, npc), nmsWorld.getMinecraftServer().av(), npc),
|
||||||
Math.ceil(Math.min(0, 40 * Math.random())));
|
(int) Math.ceil(Math.min(1, 40 * Math.random())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user