diff --git a/src/logic/scripting/lua/libvecn.cpp b/src/logic/scripting/lua/libvecn.cpp index d711a13a..a0e15499 100644 --- a/src/logic/scripting/lua/libvecn.cpp +++ b/src/logic/scripting/lua/libvecn.cpp @@ -149,7 +149,7 @@ static int l_dot(lua::State* L) { if (argc == 2) { const auto& a = lua::tovec(L, 1); const auto& b = lua::tovec(L, 2); - return lua::pushnumber(L, glm::dot(a, b));; + return lua::pushnumber(L, glm::dot(a, b)); } else if (argc == 3) { const auto& a = lua::tovec(L, 1); const auto& b = lua::tovec(L, 2);