area
PVP
density = 0
Enter(atom/movable/A)
if(ismob(A))
var/mob/M = A
if(M.PVP==0)
M.PVP=1
Exit(atom/movable/A)
if(ismob(A))
var/mob/M = A
if(M.PVP==1)
M.PVP=0
Problem description:
I can't enter the area for some reason. I just run into it. Probably something to do with the atom/movable/A
Also, you should be using boolean vars, if(!M.PVP) and if(M.PVP)