Update of /cvsroot/bobbot/Plugins/Sphere/PunishSystem
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31505/Sphere/PunishSystem
Modified Files:
BanSystem.cs JailSystem.cs
Log Message:
Changes:
- Updated namespaces to reflect change in SphereConnection assembly
Index: BanSystem.cs
===================================================================
RCS file: /cvsroot/bobbot/Plugins/Sphere/PunishSystem/BanSystem.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** BanSystem.cs 15 Feb 2005 21:47:28 -0000 1.2
--- BanSystem.cs 17 Jul 2005 21:46:27 -0000 1.3
***************
*** 34,39 ****
using Bot.Plugins.Sphere.Accounting;
! using Bot.Other.Sphere;
! using Bot.Other.Sphere.Messages;
namespace Bot.Plugins.Sphere.PunishSystem
--- 34,39 ----
using Bot.Plugins.Sphere.Accounting;
! using UltimaOnline.Sphere.Connection;
! using UltimaOnline.Sphere.Connection.Messages;
namespace Bot.Plugins.Sphere.PunishSystem
***************
*** 101,105 ****
//m_Server.CustomEvent += new EventHandler(OnCustomEvent);
! m_Server.ClientKICKed += new ClientKICKedEventHandler(OnClientKICKed);
}
#endregion
--- 101,105 ----
//m_Server.CustomEvent += new EventHandler(OnCustomEvent);
! m_Server.ClientKicked += new ClientKickedEventHandler(OnClientKicked);
}
#endregion
***************
*** 372,376 ****
#endregion
! private void OnClientKICKed(object sender, ClientKICKedEventArgs args)
{
if (!AddEntry(args.Message.Account, null, args.Message.Staff, ""))
--- 372,376 ----
#endregion
! private void OnClientKicked(object sender, ClientKickedEventArgs args)
{
if (!AddEntry(args.Message.Account, null, args.Message.Staff, ""))
Index: JailSystem.cs
===================================================================
RCS file: /cvsroot/bobbot/Plugins/Sphere/PunishSystem/JailSystem.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** JailSystem.cs 17 Feb 2005 02:29:28 -0000 1.3
--- JailSystem.cs 17 Jul 2005 21:46:28 -0000 1.4
***************
*** 34,39 ****
using Bot.Plugins.Sphere.Accounting;
! using Bot.Other.Sphere;
! using Bot.Other.Sphere.Messages;
namespace Bot.Plugins.Sphere.PunishSystem
--- 34,39 ----
using Bot.Plugins.Sphere.Accounting;
! using UltimaOnline.Sphere.Connection;
! using UltimaOnline.Sphere.Connection.Messages;
namespace Bot.Plugins.Sphere.PunishSystem
|