reverted 253, waste of time

This commit is contained in:
mark 2007-09-14 09:14:40 +00:00
parent d2100dbfac
commit eb90512129
2 changed files with 10 additions and 15 deletions

View file

@ -113,11 +113,11 @@ namespace Server.Commands.Generic
ObjectConditional cond = ObjectConditional.Empty;
foreach ( BaseExtension check in ext.List )
foreach ( BaseExtension check in ext )
{
if ( check is WhereExtension )
{
cond = ((WhereExtension)check).Conditional;
cond = ( check as WhereExtension ).Conditional;
break;
}