From c47cbcca8bdd5918dacb171c25f99a9c0af376ca Mon Sep 17 00:00:00 2001 From: louis Date: Sun, 21 Feb 2016 23:31:36 +0100 Subject: [PATCH] fixed svdrp error codes --- skindesigner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skindesigner.c b/skindesigner.c index 02e56d5..fb2ffcc 100644 --- a/skindesigner.c +++ b/skindesigner.c @@ -231,7 +231,7 @@ cString cPluginSkinDesigner::SVDRPCommand(const char *Command, const char *Optio if (!activeSkin) { ReplyCode = 550; - return ""; + return "SKINDESIGNER not active."; } if (strcasecmp(Command, "RELD") == 0) { @@ -289,7 +289,7 @@ cString cPluginSkinDesigner::SVDRPCommand(const char *Command, const char *Optio return "SKINDESIGNER Custom Tokens listed in Log"; } ReplyCode = 502; - return "SKINDESIGNER not active."; + return "SKINDESIGNER invalid SVDRP command."; }