Page 1 of 1

Another small fix in distro script

Posted: Wed Aug 30, 2006 3:26 pm
by Lagoon
097\Distro\pkg\mobiles\damage\include\damage.inc
Line 211

Code: Select all

	if ( last_damage.acctname )
		last_damage.+acctname := source.acctname;
	endif
should be

Code: Select all

	if ( source.acctname )
		last_damage.+acctname := source.acctname;
	endif

Posted: Wed Aug 30, 2006 3:39 pm
by Austin
fixed