Avatar

Level 3

Hey,

I've uncovered what I believe is a bug in afcs.py, is there a system in place for reporting it?

(I'll add it here for all who are curious)

Referring to the code below, line 292 should be more like:

type = accountmanager.ROOM_ITEMS

---------------------------------------afcs.py---------------------------------------------
291    if type == None:
292      type = ROOM_ITEMS
293    elif type != accountmanager.TEMPLATE_ITEMS and type != accountmanager.ROOM_ITEMS:
294      raise error("invalid-type")

---------------------------------------------------------------------------------------------