From b60cf72dbb1b89d2722c541c233bb4a04045713c Mon Sep 17 00:00:00 2001 From: Linventif Date: Sun, 15 Sep 2024 16:57:43 +0000 Subject: [PATCH] Fix: name of screenshot context --- lua/gmod_integration/client/cl_screenshots.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/gmod_integration/client/cl_screenshots.lua b/lua/gmod_integration/client/cl_screenshots.lua index a767b64..44bb32c 100644 --- a/lua/gmod_integration/client/cl_screenshots.lua +++ b/lua/gmod_integration/client/cl_screenshots.lua @@ -75,7 +75,7 @@ hook.Add("HUDPaint", "gmInte:ContextScreen:Screenshot", function() surface.DrawRect(ScrW() / 2 - 1, ScrH() / 2 - 10, 2, 20) surface.SetDrawColor(0, 0, 0, 50) surface.DrawRect(0, 0, ScrW(), ScrH()) - draw.SimpleText(gmInte.getTranslation("report_bug.context_menu.screen_capture", "Close the context menu to take the screenshot that will be send to Discord."), "Trebuchet24", ScrW() / 2, ScrH() / 2 + 40, Color(255, 255, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER) + draw.SimpleText(gmInte.getTranslation("context_menu.screen_capture", "Close the context menu to take the screenshot that will be send to Discord."), "Trebuchet24", ScrW() / 2, ScrH() / 2 + 40, Color(255, 255, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER) end) function gmInte.contextScreenshot()