14 lines
554 B
Lua
14 lines
554 B
Lua
|
|
-- Nuclear "forget everything" — guarded by the "точно" prefix in the toml
|
||
|
|
-- phrases so a stray "забудь" doesn't trigger it.
|
||
|
|
local lang = jarvis.context.language
|
||
|
|
local n = jarvis.memory.clear_all()
|
||
|
|
|
||
|
|
if n == 0 then
|
||
|
|
return jarvis.cmd.ok(lang == "ru" and "Память уже пуста, сэр."
|
||
|
|
or "Memory is already empty, sir.")
|
||
|
|
end
|
||
|
|
|
||
|
|
return jarvis.cmd.ok(string.format(lang == "ru"
|
||
|
|
and "Стёр %d записей. Память чиста."
|
||
|
|
or "Wiped %d records. Memory is clean.", n))
|