• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

As remove

item.cpp
Code:
if(it.attackSpeed || (item && item->getAttackSpeed()))
    s << ", AS: " << (item ? item->getAttackSpeed() : it.attackSpeed);

- - - Edited - - -

Do as below mentioned. :p
 
Ninja do you mean
if(it.attackSpeed || (item && item->getAttackSpeed()))
{
if(begin)
{
begin = false;
s << " (";
}
else
s << ", ";

s << "AS: " << (item ? item->getAttackSpeed() : it.attackSpeed);
}
that? you forgot to put "}" this and now i got error on compiling :p
 
Back
Top