diff --git a/strolly.py b/strolly.py
index b36a23ab743b49769ec3616ac669f725cef2a8d4..a77318e238a0209a79e5612e06e4e6a02233cae1 100644
--- a/strolly.py
+++ b/strolly.py
@@ -15,8 +15,7 @@ load_dotenv()
 TOKEN = os.getenv('DISCORD_TOKEN')
 ACTIVITY = os.getenv('DISCORD_ACTIVITY')
 
-intents = discord.Intents.default()
-intents.members = True
+intents = discord.Intents.all()
 bot = commands.Bot(command_prefix='!', help_command=None, activity=discord.Game(ACTIVITY), intents=intents)
 bot.add_cog(PollCog(bot))
 bot.add_cog(RollCog(bot))
@@ -30,4 +29,14 @@ async def on_ready():
     print("Client started!")
 
 
+@bot.event
+async def on_member_update(before, after):
+    if before.id == 250613346653569025:
+        if after.activity and "Blender" in after.activity.name:
+            if not before.activity or (before.activity and "Blender" not in before.activity.name):
+                channel = await bot.fetch_channel(811980578621620235)
+                await channel.send(
+                    "Achtung <@!490167202625093634>!!! Er tut es schon wieder! Marcus hat gerade die Kultsoftware Blender gestartet!")
+
+
 bot.run(TOKEN)