• 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!

Bantime error

Turson5

New Member
Joined
May 16, 2010
Messages
45
Reaction score
0
When I'm looking for player NICK in Acc I'm getting this error:
Code:
Fatal error: Call to undefined method OTS_Account::getBanTime() in characters.php on line 378
This player is banned


Line 378 and more
Code:
if($account->getBanTime() > 0)
Code:
if($account->isBanned())
					if($account->getBanTime() > 0)
						$main_content .= '<font color="red"> [Banished until '.date("j F Y, G:i", $account->getBanTime()).']</font>';
					else
						$main_content .= '<font color="red"> [Banished FOREVER]</font>';
 
Back
Top