3 whoami = Crossfire.WhoAmI()
6 if map !=
None and whoami.DungeonMaster:
8 map.Print(
'%s disinfecting %s'%(whoami.Name, map.Path))
9 for x
in range(0, map.Width):
10 for y
in range(0, map.Height):
11 o = map.ObjectAt(x, y)
14 if o.Type == Crossfire.Type.DISEASE:
15 whoami.Message(
' removing %s at %d,%d'%(o.Name, x, y))
20 map.Print(
' => nothing removed')
22 map.Print(
' => %d diseases removed'%count)