deleteGroupAttribute(groupID: GroupID, attribute: string) {
        const group = this.source.g.find((g) => g.id === groupID);
        if (!group.a[attribute]) return;
        group.a[attribute].deleted = getTimestamp();
        this.emit("commandsExecuted");