|
@@ -715,11 +715,11 @@ void MSKlient::thread()
|
|
|
int anz = ms->zDB()->getMinigameOptionList( mName, &oList );
|
|
|
delete[] mName;
|
|
|
klient->sendeEncrypted( (char*)&anz, 4 );
|
|
|
- for( auto t = oList.getArray(); t.set && t.var; t++ )
|
|
|
+ for( auto t = oList.getIterator(); t && t._; t++ )
|
|
|
{
|
|
|
- l = (char)t.var->getLength();
|
|
|
+ l = (char)t->getLength();
|
|
|
klient->sendeEncrypted( (char*)&l, 1 );
|
|
|
- klient->sendeEncrypted( t.var->getText(), l );
|
|
|
+ klient->sendeEncrypted( t->getText(), l );
|
|
|
}
|
|
|
break;
|
|
|
}
|