Code:
if(abstand = 0)
		{
			ent_remove(ent_ball);
			return;
		}



Should be:
Code:
if(abstand == 0)
		{
			ent_remove(ent_ball);
			return;
		}