Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[Bug Fix] Eclipse Evolution 2.7 "Item Editor Weapon Property"


Unknown_raven
 Share

Recommended Posts

Ok so this is a small display bug.  It occurs if you open up the item editor, then set a new item to the weapon property.  In the bottom your notice the Bow display control screen.  But if you then change the property to something like a ring, the Bow screen will still be displayed.

The fix is extremely simple.

==SERVER SIDE==

-Open up Form

itemEditor

-Search for the Sub

```
Private Sub cmbType_Click()

```
-then find where it reads

```
If cmbType.ListIndex = ITEM_TYPE_WEAPON Then
            fraBow.Visible = True
        End If

```
-Replace with

```
If cmbType.ListIndex = ITEM_TYPE_WEAPON Then
            fraBow.Visible = True
        Else
            fraBow.Visible = False
        End If

```
Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...