Another small fix in distro script

Archive of posts related to former distro versions. Be aware that posts here do not refer to the current distro and may not work.
Locked
Lagoon
Grandmaster Poster
Posts: 118
Joined: Sun Mar 05, 2006 7:25 am

Another small fix in distro script

Post 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
User avatar
Austin
Former Developer
Posts: 621
Joined: Wed Jan 25, 2006 2:30 am

Post by Austin »

fixed
Locked