Thread: Circle select
View Single Post
  #5  
Old 07-22-2003, 01:53 AM
Thought Thought is offline
PipBoy Extraordinaire!
Thought's Avatar
Join Date: Nov 2001
Location: Long Beach, California.
Posts: 692
Thought is on a distinguished road
Why do you have this?

NPC Code:
  // Has the weapon count changed?
if (this.oldweaponcount != weaponcount)
this.info = 0; // If so we need to update the info

// Has info been shown yet?
if (this.info == 0)
{



Couldn't it be:

NPC Code:
  // Has info been shown yet?
if (this.oldweaponcount != weaponcount) {
this.info = 0;


(assuming this.info is used elsewhere)


Also, when activating through c, the bracket gets offset incorrectly.
__________________
Rick ([email protected])
#gscript on FreeNode (#gscript Guild, #gscript Information)
Graal User Statistics

I am now using my new account, Rick.
Reply With Quote