Error in script found.

Lucifer

Active Member
Hi All
Due last few updates of script I'm always need to make changes in the file obj_Social.iss, there is an error in the method Initialize()

Please take a closer look to the next few strings:
Code:
	if ${_Me.CorporationID} > 0
		{
			This.AllianceWhiteList:Add[${_Me.CorporationID}]
		}
		if ${_Me.AllianceID} > 0
		{
			This.AllianceWhiteList:Add[${_Me.AllianceID}]
		}
Please correct it in the next update please, if I've correctly understood there should be the following:
Code:
		if ${_Me.CorporationID} > 0
		{
			This.CorpWhiteList:Add[${_Me.CorporationID}]
		}
		if ${_Me.AllianceID} > 0
		{
			This.AllianceWhiteList:Add[${_Me.AllianceID}]
		}
Thanks a lot!
 
Top Bottom