diff --git a/src/structure/interfaces/Infraction.js b/src/structure/interfaces/Infraction.js index 88756ea..f9777ca 100644 --- a/src/structure/interfaces/Infraction.js +++ b/src/structure/interfaces/Infraction.js @@ -51,6 +51,7 @@ class Infraction { this.reason = data.reason || 'N/A'; + this.silent = data.silent || false; this.points = data.points || 0; this.expiration = data.expiration > 0 ? Date.now() + data.expiration : null; // Time when the points expire in milliseconds this.totalPoints = 0;