From cf2c8b8e0e36e31a87408316d0b89c443ed8b660 Mon Sep 17 00:00:00 2001 From: Evil Factory <36804725+evilfactory@users.noreply.github.com> Date: Sat, 14 Mar 2026 14:45:03 -0300 Subject: [PATCH] Add missing HttpGet in the interface --- .../SharedSource/LuaCs/Compatibility/ILuaCsNetworking.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Compatibility/ILuaCsNetworking.cs b/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Compatibility/ILuaCsNetworking.cs index 4aae5b61e..9ed27fc32 100644 --- a/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Compatibility/ILuaCsNetworking.cs +++ b/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Compatibility/ILuaCsNetworking.cs @@ -9,6 +9,7 @@ internal interface ILuaCsNetworking : ILuaCsShim ushort LastClientListUpdateID { get; set; } void HttpRequest(string url, LuaCsAction callback, string data = null, string method = "POST", string contentType = "application/json", Dictionary headers = null, string savePath = null); void HttpPost(string url, LuaCsAction callback, string data, string contentType = "application/json", Dictionary headers = null, string savePath = null); + void HttpGet(string url, LuaCsAction callback, Dictionary headers = null, string savePath = null); void Receive(string netId, LuaCsAction action); #if SERVER