From 1f45f27f74b5eb1e02ad69dfa624176597b5b808 Mon Sep 17 00:00:00 2001 From: Squibid Date: Wed, 7 Jan 2026 23:05:39 -0500 Subject: [PATCH] it's a mousemap not a keybind --- src/types/Mousemap.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/Mousemap.zig b/src/types/Mousemap.zig index af30708..0237e8d 100644 --- a/src/types/Mousemap.zig +++ b/src/types/Mousemap.zig @@ -40,7 +40,7 @@ pub fn callback(self: *const Mousemap, state: MousemapState, args: anytype) bool const t = Lua.state.rawGetIndex(zlua.registry_index, lua_ref_idx); if (t != zlua.LuaType.function) { - RemoteLua.sendNewLogEntry("Failed to call keybind, it doesn't have a callback."); + RemoteLua.sendNewLogEntry("Failed to call mousemap, it doesn't have a callback."); Lua.state.pop(1); return false; }