From 18bbde19b6d4f6d065ab498b1ce3a76847d6d1d5 Mon Sep 17 00:00:00 2001 From: disqualifier Date: Mon, 29 Jun 2026 21:41:37 -0400 Subject: [PATCH] docs: note cache=None/[] disables the cache button Signed-off-by: disqualifier --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5f51311..adb0b9b 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,8 @@ echoes its `data`. ## Cache button (mention priming) Discord clients render `<@id>` as a raw id until the user object is cached locally. +Omit `cache` (or pass `None` / `[]`) and the button never appears; a non-empty cache +must have one entry per page or construction raises. The cache button fixes that: pass `cache=[...]` with one entry per page, where each entry is a string of the user mentions on that page (`"<@111> <@222> <@333>"`).