mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 01:44:39 -05:00
IIDX: Fixed where mydata not being sent on certain versions
This commit is contained in:
parent
d8d2e59818
commit
a2e387d636
|
|
@ -47,6 +47,7 @@ Known Issues
|
|||
---
|
||||
|
||||
Changelogs
|
||||
|
||||
**v0.1.0**
|
||||
- Added Initial support for Lincle
|
||||
|
||||
|
|
|
|||
|
|
@ -405,23 +405,23 @@ export const musicappoint: EPR = async (info, data, send) => {
|
|||
...other_data,
|
||||
gauge_data: K.ITEM("bin", Base64toNumArray(other_musicdata[clid + 10]))
|
||||
};
|
||||
}
|
||||
|
||||
if (_.isNil(sdata) && !_.isNil(mydata)) {
|
||||
result = {
|
||||
"@attr": { my_option: option, my_option2: option2 },
|
||||
mydata,
|
||||
my_gauge_data: K.ITEM("bin", my_gauge_data),
|
||||
};
|
||||
}
|
||||
if (_.isNil(mydata) && !_.isNil(sdata)) result = { sdata };
|
||||
if (!_.isNil(mydata) && !_.isNil(sdata)) {
|
||||
result = {
|
||||
"@attr": { my_option: option, my_option2: option2 }, // CastHour //
|
||||
mydata,
|
||||
my_gauge_data: K.ITEM("bin", my_gauge_data),
|
||||
sdata,
|
||||
};
|
||||
}
|
||||
if (_.isNil(sdata) && !_.isNil(mydata)) {
|
||||
result = {
|
||||
"@attr": { my_option: option, my_option2: option2 },
|
||||
mydata,
|
||||
my_gauge_data: K.ITEM("bin", my_gauge_data),
|
||||
};
|
||||
}
|
||||
if (_.isNil(mydata) && !_.isNil(sdata)) result = { sdata };
|
||||
if (!_.isNil(mydata) && !_.isNil(sdata)) {
|
||||
result = {
|
||||
"@attr": { my_option: option, my_option2: option2 }, // CastHour //
|
||||
mydata,
|
||||
my_gauge_data: K.ITEM("bin", my_gauge_data),
|
||||
sdata,
|
||||
};
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user