summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java')
-rw-r--r--EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java
new file mode 100644
index 000000000..b05efedc1
--- /dev/null
+++ b/EssentialsUpdate/src/f00f/net/irc/martyr/replies/LUserOpReply.java
@@ -0,0 +1,36 @@
+package f00f.net.irc.martyr.replies;
+
+import f00f.net.irc.martyr.InCommand;
+
+public class LUserOpReply extends GenericStringReply
+{
+
+ private int numOps;
+
+ public LUserOpReply()
+ {
+ }
+
+ public LUserOpReply( int ops, String string )
+ {
+ super( string );
+ this.numOps = ops;
+ }
+
+ public String getIrcIdentifier()
+ {
+ return "252";
+ }
+
+ public InCommand parse( String prefix, String identifier, String params )
+ {
+ return new LUserOpReply( getIntParameter( params, 1, -1 ), getParameter( params, 2 ) );
+ }
+
+ public int getNumOps()
+ {
+ return numOps;
+ }
+
+}
+