From 41a99c4bc51b70e3fe4f2eb757865e9f16064243 Mon Sep 17 00:00:00 2001 From: Olof Larsson Date: Fri, 21 Aug 2015 14:58:04 +0200 Subject: [PATCH] CommandSender Link Cauldron nonsupport message --- src/com/massivecraft/factions/entity/MPlayer.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/com/massivecraft/factions/entity/MPlayer.java b/src/com/massivecraft/factions/entity/MPlayer.java index 7fb905d0..2112db0e 100644 --- a/src/com/massivecraft/factions/entity/MPlayer.java +++ b/src/com/massivecraft/factions/entity/MPlayer.java @@ -834,10 +834,11 @@ public class MPlayer extends SenderEntity implements EconomyParticipato CommandSender sender = this.getSender(); if (sender == null) { - msg("ERROR: Your \"CommandSender Link\" has been severed. This shouldn't happen."); - msg("Help the Factions developers by reporting this at: https://github.com/MassiveCraft/Factions/issues"); - msg("Describe what you were doing, what client you are using, if this is your first time on the server etc. The more the better."); - msg("Relogging to the server should fix the issue."); + msg("ERROR: Your \"CommandSender Link\" has been severed."); + msg("It's likely that you are using Cauldron."); + msg("We do currently not support Cauldron."); + msg("We would love to but lack time to develop support ourselves."); + msg("Do you know how to code? Please send us a pull request <3, sorry."); return false; } EventFactionsChunksChange event = new EventFactionsChunksChange(sender, chunks, newFaction);