mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-01-05 23:08:23 +00:00
Try to be a little less confusing with non-command debug errors.
This commit is contained in:
parent
beef371ae6
commit
4232216f76
3 changed files with 18 additions and 13 deletions
|
@ -114,7 +114,7 @@ public class TimedTeleport implements Runnable
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
ess.showError(teleportOwner.getSource(), ex, "teleport");
|
||||
ess.showError(teleportOwner.getSource(), ex, "\\ teleport");
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
|
@ -51,11 +51,11 @@ public class EssentialsSign
|
|||
}
|
||||
catch (ChargeException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
catch (SignException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
// Return true, so the player sees the wrong sign.
|
||||
return true;
|
||||
|
@ -97,12 +97,12 @@ public class EssentialsSign
|
|||
}
|
||||
catch (ChargeException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
return false;
|
||||
}
|
||||
catch (SignException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -119,7 +119,7 @@ public class EssentialsSign
|
|||
}
|
||||
catch (SignException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -148,11 +148,11 @@ public class EssentialsSign
|
|||
}
|
||||
catch (ChargeException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
catch (SignException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -166,11 +166,11 @@ public class EssentialsSign
|
|||
}
|
||||
catch (ChargeException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
catch (SignException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -184,7 +184,7 @@ public class EssentialsSign
|
|||
}
|
||||
catch (SignException ex)
|
||||
{
|
||||
ess.showError(user.getSource(), ex, signName);
|
||||
showError(ess, user.getSource(), ex, signName);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
@ -457,7 +457,12 @@ public class EssentialsSign
|
|||
return new Trade(money, ess);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void showError(final IEssentials ess, final CommandSource sender, final Throwable exception, final String signName)
|
||||
{
|
||||
ess.showError(sender, exception, "\\ sign: " + signName);
|
||||
}
|
||||
|
||||
static class EventSign implements ISign
|
||||
{
|
||||
|
|
|
@ -82,7 +82,7 @@ public abstract class EssentialsChatPlayer implements Listener
|
|||
}
|
||||
catch (ChargeException e)
|
||||
{
|
||||
ess.showError(chatStore.getUser().getSource(), e, chatStore.getLongType());
|
||||
ess.showError(chatStore.getUser().getSource(), e, "\\ chat " + chatStore.getLongType());
|
||||
event.setCancelled(true);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue