"""
if not on:
return MAX_MEMORY_SINGLE
+ if machine.memory > MAX_MEMORY_SINGLE:
+ # If they've been blessed, let them have it
+ return machine.memory
machines = getMachinesByOwner(user, machine)
active_machines = [x for x in machines if g.uptimes[x]]
mem_usage = sum([x.memory for x in active_machines if x != machine])