summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandseen.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2012-04-08 00:07:53 +0200
committersnowleo <schneeleo@gmail.com>2012-04-08 00:07:53 +0200
commit711d42d6042e1700abe33b4832eeb75d6e1a9a12 (patch)
tree5197c8cb6c5cf28b18887bb0919e836a4c1aa7f3 /Essentials/src/com/earth2me/essentials/commands/Commandseen.java
parentdc4ca6386f48b997d57d1791edc64830e886e60a (diff)
downloadEssentials-711d42d6042e1700abe33b4832eeb75d6e1a9a12.tar
Essentials-711d42d6042e1700abe33b4832eeb75d6e1a9a12.tar.gz
Essentials-711d42d6042e1700abe33b4832eeb75d6e1a9a12.tar.lz
Essentials-711d42d6042e1700abe33b4832eeb75d6e1a9a12.tar.xz
Essentials-711d42d6042e1700abe33b4832eeb75d6e1a9a12.zip
Server-Layer Part 1
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandseen.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandseen.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandseen.java b/Essentials/src/com/earth2me/essentials/commands/Commandseen.java
index 322bde642..7ad9b42f4 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandseen.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandseen.java
@@ -3,6 +3,7 @@ package com.earth2me.essentials.commands;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.utils.Util;
import com.earth2me.essentials.api.IUser;
+import com.earth2me.essentials.api.server.ICommandSender;
import com.earth2me.essentials.permissions.Permissions;
import com.earth2me.essentials.user.UserData.TimestampType;
import com.earth2me.essentials.utils.DateUtil;
@@ -13,7 +14,7 @@ import org.bukkit.command.CommandSender;
public class Commandseen extends EssentialsCommand
{
@Override
- protected void run(final CommandSender sender, final String commandLabel, final String[] args) throws Exception
+ protected void run(final ICommandSender sender, final String commandLabel, final String[] args) throws Exception
{
seen(sender,args,true);
}