Fix for TFS 1.4.2 where conditions is NULL

This commit is contained in:
slawkens 2024-12-29 15:46:02 +01:00
parent b0c8cf2ecd
commit b8396d4c84

View File

@ -1752,11 +1752,6 @@ class OTS_Player extends OTS_Row_DAO
*/ */
public function getConditions() public function getConditions()
{ {
if( !isset($this->data['conditions']) )
{
throw new E_OTS_NotLoaded();
}
return $this->data['conditions']; return $this->data['conditions'];
} }