mono compat attempt

This commit is contained in:
mark 2007-09-14 08:51:27 +00:00
parent 752c6eeab1
commit d2100dbfac
2 changed files with 15 additions and 10 deletions

View file

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