From 091f77f352d4b0ca40ee8ee8f802c0630b7a8141 Mon Sep 17 00:00:00 2001 From: icedream Date: Wed, 4 Nov 2015 23:39:25 +0100 Subject: [PATCH] Remove code checking the nickname length. --- app.iced | 3 --- 1 file changed, 3 deletions(-) diff --git a/app.iced b/app.iced index b2f947c..fc93a2f 100644 --- a/app.iced +++ b/app.iced @@ -324,9 +324,6 @@ ts3clientService.on "started", (ts3proc) => ts3query.sendtextmessage args.targetmode, invoker.id, "Volume set to #{vol}%." when "changenick" nick = if paramline.length > params[0].length then paramline else params[0] - if nick.length < 3 or nick.length > 30 - ts3query.sendtextmessage args.targetmode, invoker.id, "Invalid nickname." - return Sync () => try ts3query.clientupdate.sync ts3query, { client_nickname: nick }