We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5072e03 + d7b4428 commit df920abCopy full SHA for df920ab
lib/postgres.js
@@ -226,6 +226,15 @@ class Postgres {
226
if (s.wear) {
227
res.w = s.wear;
228
}
229
+ if (s.rotation) {
230
+ res.r = s.rotation;
231
+ }
232
+ if (s.offset_x) {
233
+ res.x = s.offset_x;
234
235
+ if (s.offset_y) {
236
+ res.y = s.offset_y;
237
238
return res;
239
}) : null;
240
@@ -344,6 +353,9 @@ class Postgres {
344
353
stickerId: s.i,
345
354
slot: s.s,
346
355
wear: s.w,
356
+ rotation: s.r,
357
+ offset_x: s.x,
358
+ offset_y: s.y,
347
359
348
360
});
349
361
0 commit comments