Eclipse error.

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

j0navor

Feedback score
0
Posts
147
Reactions
46
Resources
0
Probably so,

Could not pass event PlayerInteractEvent to CyclonePractice v0.6.1
net.lightshard.scavduels.objects.entity.player.cooldown.CooldownManager.check(CooldownManager.java:23) ~[?:?]
 

Batman

Community Manager.
Banned
Feedback score
1
Posts
776
Reactions
298
Resources
0
Probably so,

Could not pass event PlayerInteractEvent to CyclonePractice v0.6.1
net.lightshard.scavduels.objects.entity.player.cooldown.CooldownManager.check(CooldownManager.java:23) ~[?:?]
I didn't got scammed nvm lol. Still have the error I'll send line 23 of Cooldownmanager.[DOUBLEPOST=1464446805][/DOUBLEPOST]
CooldownManager.java:23

pl0x show
import org.bukkit.plugin.PluginManager;

lol
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/batman-scam-report.163175/)

Guusz

Full-Stack Web Developer
Premium
Feedback score
0
Posts
248
Reactions
138
Resources
0
youre using wrong bukkit on your server
 

Batman

Community Manager.
Banned
Feedback score
1
Posts
776
Reactions
298
Resources
0
youre using wrong bukkit on your server
NVM, Sorry sended the wrong line 23.

protected static boolean check(Player player, UserCooldown cooldown)
{
final long timechecked = System.currentTimeMillis(); //fixes garbage collection issue.
if(delays.containsKey(player.getUniqueId()) && delays.get(player.getUniqueId()).get(cooldown) != null && delays.get(player.getUniqueId()).get(cooldown).longValue() > timechecked)
{
cooldown.sendNotReady(player);
return false;
}
else
{
delays.get(player.getUniqueId()).put(cooldown, timechecked + cooldown.getDelay());
return true;
}
}
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/batman-scam-report.163175/)

Guusz

Full-Stack Web Developer
Premium
Feedback score
0
Posts
248
Reactions
138
Resources
0
NVM, Sorry sended the wrong line 23.

protected static boolean check(Player player, UserCooldown cooldown)
{
final long timechecked = System.currentTimeMillis(); //fixes garbage collection issue.
if(delays.containsKey(player.getUniqueId()) && delays.get(player.getUniqueId()).get(cooldown) != null && delays.get(player.getUniqueId()).get(cooldown).longValue() > timechecked)
{
cooldown.sendNotReady(player);
return false;
}
else
{
delays.get(player.getUniqueId()).put(cooldown, timechecked + cooldown.getDelay());
return true;
}
}
Which line is line 23 ?
 
Status
This thread has been locked.
Top