summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserClientReply.java
blob: c108fe919e7d8c758e82ad0116b3c8871a4949a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package f00f.net.irc.martyr.replies;

import f00f.net.irc.martyr.InCommand;

public class LUserClientReply extends GenericStringReply
{

    public LUserClientReply()
    {
    }

    public LUserClientReply( String string )
    {
        super( string );
    }

    public String getIrcIdentifier()
    {
        return "251";
    }

    public InCommand parse( String prefix, String identifier, String params )
    {
        return new LUserClientReply( getParameter( params, 1 ) );
    }

}