From af00ec8970e77ea8a0afd21571eeeef9c554e1ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Rom=C3=A1n?= Date: Fri, 30 Apr 2021 22:32:52 +0200 Subject: [PATCH] refactor(Sticker): rename Snowflake variable (#5575) --- src/structures/Sticker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/Sticker.js b/src/structures/Sticker.js index 1fdc09428a0c..bac20e1dbe96 100644 --- a/src/structures/Sticker.js +++ b/src/structures/Sticker.js @@ -2,7 +2,7 @@ const Base = require('./Base'); const { StickerFormatTypes } = require('../util/Constants'); -const Snowflake = require('../util/SnowflakeUtil'); +const SnowflakeUtil = require('../util/SnowflakeUtil'); /** * Represents a Sticker. @@ -60,7 +60,7 @@ class Sticker extends Base { * @readonly */ get createdTimestamp() { - return Snowflake.deconstruct(this.id).timestamp; + return SnowflakeUtil.deconstruct(this.id).timestamp; } /**