diff --git a/src/BizHawk.Client.Common/lua/ILuaLibraries.cs b/src/BizHawk.Client.Common/lua/ILuaLibraries.cs
index dd66772f02..ca3f164c61 100644
--- a/src/BizHawk.Client.Common/lua/ILuaLibraries.cs
+++ b/src/BizHawk.Client.Common/lua/ILuaLibraries.cs
@@ -51,6 +51,12 @@ namespace BizHawk.Client.Common
void SpawnAndSetFileThread(string pathToLoad, LuaFile lf);
+ ///
+ /// Executes Lua code. Automatically prepends statement if possible.
+ ///
+ ///
+ /// Values returned by the Lua script, if any.
+ ///
object[] ExecuteString(string command);
(bool WaitForFrame, bool Terminated) ResumeScript(LuaFile lf);
diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs
index 002d04d9ca..e77c0d912a 100644
--- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs
+++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs
@@ -323,12 +323,6 @@ namespace BizHawk.Client.EmuHawk
public void SpawnAndSetFileThread(string pathToLoad, LuaFile lf)
=> lf.Thread = SpawnCoroutine(pathToLoad);
- ///
- /// Executes Lua code. Automatically prepends statement if possible.
- ///
- ///
- /// Values returned by the Lua script, if any.
- ///
public object[] ExecuteString(string command)
{
const string ChunkName = "input"; // shows up in error messages