Why do i get the error: Loose Indentation on line 2859 and 2864
PHP Code:
public respawn_sapitem(id)
{
if (is_user_alive(id))
{
if (has_chicken[id] == true)
{
give_item(id, "weapon_mac10")
}
if (has_john[id] == true)
{
give_item(id, "weapon_fiveseven")
}
if (has_tactical[id] == true)
{
give_item(id, "weapon_m3")
}
if (has_dynamic[id] == true)
{
give_item(id, "weapon_deagle")
}
}
}