require "Flag.rb" module RubyMud class WornOnChest < Flag def initialize(owner) super(owner) end end # Note this is the class, not an instance Flags.add(WornOnChest) end #region