diff --git a/disco/gateway/events.py b/disco/gateway/events.py index c08ad2e..7dc6d1f 100644 --- a/disco/gateway/events.py +++ b/disco/gateway/events.py @@ -60,7 +60,13 @@ class GatewayEvent(six.with_metaclass(GatewayEventMeta, Model)): obj[alias] = data - return cls(obj, client) + obj = cls(obj, client) + + if hasattr(cls, '_attach'): + field, to = cls._attach + setattr(getattr(obj, to[0]), to[1], getattr(obj, field)) + + return obj def __getattr__(self, name): try: @@ -108,6 +114,13 @@ def proxy(field): return deco +def attach(field, to=None): + def deco(cls): + cls._attach = (field, to) + return cls + return deco + + class Ready(GatewayEvent): """ Sent after the initial gateway handshake is complete. Contains data required @@ -381,6 +394,7 @@ class GuildMemberUpdate(GatewayEvent): @proxy('role') +@attach('guild_id', to=('role', 'guild_id')) class GuildRoleCreate(GatewayEvent): """ Sent when a role is created.