revbot.js 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3165,7 +3165,7 @@ import { EventEmitter } from "node:events";
|
|
|
3165
3165
|
import { AxiosError } from "axios";
|
|
3166
3166
|
|
|
3167
3167
|
// package.json
|
|
3168
|
-
var version = "0.1.
|
|
3168
|
+
var version = "0.1.4";
|
|
3169
3169
|
|
|
3170
3170
|
// src/rest/restUtils/rateLimitQueue.ts
|
|
3171
3171
|
import axios3 from "axios";
|
|
@@ -4097,7 +4097,7 @@ var ClientUser = class extends User {
|
|
|
4097
4097
|
setStatus(text, presence) {
|
|
4098
4098
|
return __async(this, null, function* () {
|
|
4099
4099
|
var _a, _b, _c;
|
|
4100
|
-
if (typeof text === "string" && text in Status) {
|
|
4100
|
+
if (typeof text === "string" && text in Status && !presence) {
|
|
4101
4101
|
presence = text;
|
|
4102
4102
|
text = void 0;
|
|
4103
4103
|
}
|