require "Flag.rb"

module RubyMud

class NoMove < Flag

	# There can be more than one NoMove on the target
	def Flag.MoreThanOne?
		return true
	end	

	def initialize(owner)
		super(owner)
	end

end

# Note this is the class, not an instance
Flags.add(NoMove)

end #module