fix: import correct field for click masks
This commit is contained in:
@@ -40,9 +40,9 @@ public interface Widget
|
||||
|
||||
void setContentType(int contentType);
|
||||
|
||||
int getConfig();
|
||||
int setClickMask();
|
||||
|
||||
void setConfig(int config);
|
||||
void setClickMask(int mask);
|
||||
|
||||
Widget getParent();
|
||||
|
||||
|
||||
@@ -386,7 +386,7 @@ public class ReorderPrayersPlugin extends Plugin
|
||||
Prayer prayer = prayerOrder[index];
|
||||
Widget prayerWidget = prayerWidgets.get(prayer.ordinal());
|
||||
|
||||
int widgetConfig = prayerWidget.getConfig();
|
||||
int widgetConfig = prayerWidget.setClickMask();
|
||||
if (config.unlockPrayerReordering())
|
||||
{
|
||||
// allow dragging of this widget
|
||||
@@ -401,7 +401,7 @@ public class ReorderPrayersPlugin extends Plugin
|
||||
// remove drag on flag
|
||||
widgetConfig &= ~DRAG_ON;
|
||||
}
|
||||
prayerWidget.setConfig(widgetConfig);
|
||||
prayerWidget.setClickMask(widgetConfig);
|
||||
|
||||
int x = index % PRAYER_COLUMN_COUNT;
|
||||
int y = index / PRAYER_COLUMN_COUNT;
|
||||
|
||||
@@ -43,11 +43,11 @@ public interface RSWidget extends Widget
|
||||
@Import("parentId")
|
||||
int getRSParentId();
|
||||
|
||||
@Import("config")
|
||||
int getConfig();
|
||||
@Import("clickMask")
|
||||
int setClickMask();
|
||||
|
||||
@Import("config")
|
||||
void setConfig(int config);
|
||||
@Import("clickMask")
|
||||
void setClickMask(int mask);
|
||||
|
||||
@Import("boundsIndex")
|
||||
int getBoundsIndex();
|
||||
|
||||
Reference in New Issue
Block a user