|
|
|
|
|
|
292
|
if role not in before.roles:
|
292
|
if role not in before.roles:
|
|
293
|
added_role_names.append(role.name)
|
293
|
added_role_names.append(role.name)
|
|
294
|
if len(removed_role_names) > 0:
|
294
|
if len(removed_role_names) > 0:
|
|
295
|
- changes.append(f'Removed roles: ~~**{"**~~, ~~**".joined(removed_role_names)}**~~')
|
|
|
|
|
|
295
|
+ changes.append(f'Removed roles: ~~**{"**~~, ~~**".join(removed_role_names)}**~~')
|
|
296
|
if len(added_role_names) > 0:
|
296
|
if len(added_role_names) > 0:
|
|
297
|
- changes.append(f'Added roles: **{"**, **".joined(added_role_names)}**')
|
|
|
|
|
|
297
|
+ changes.append(f'Added roles: **{"**, **".join(added_role_names)}**')
|
|
298
|
if after.pending != before.pending:
|
298
|
if after.pending != before.pending:
|
|
299
|
pass # not that interesting and probably noisy
|
299
|
pass # not that interesting and probably noisy
|
|
300
|
if after.timed_out_until != before.timed_out_until:
|
300
|
if after.timed_out_until != before.timed_out_until:
|