#!/usr/bin/env ruby
# $Revision: 1.2 $
# $Date: 2003/12/04 22:18:34 $
# $Author: jefus $

# check.rb
# testing command to perform a skill check
#
# check <situation modifier> <skill name>

def Commands.do_check(doer, args)
	if args
		modifier, skill = args.split(/ /, 2)
		doer.checkSkill(skill, modifier.to_i)
	end
end