From cee0fa22b1d6ffdfac396da5476c7a9a302c7ff7 Mon Sep 17 00:00:00 2001 From: HellReach <13891298+HellReach@users.noreply.github.com> Date: Sat, 6 Dec 2025 16:43:18 +0300 Subject: [PATCH] fix: resolve issue preventing players from sitting in seats --- lua/entities/gmod_subway_base/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/entities/gmod_subway_base/init.lua b/lua/entities/gmod_subway_base/init.lua index 4c0e30f..f04e6cd 100644 --- a/lua/entities/gmod_subway_base/init.lua +++ b/lua/entities/gmod_subway_base/init.lua @@ -1194,7 +1194,7 @@ function ENT:CreateSeatEntity(seat_info) self:DrawShadow(false) --Assign ownership - if IsValid(self:GetPlayer()) then seat:SetOwner(self:GetPlayer()) end + if IsValid(self:GetPlayer()) then seat:SetCreator(self:GetPlayer()) end if CPPI and IsValid(self:CPPIGetOwner()) then seat:CPPISetOwner(self:CPPIGetOwner()) end -- Hide the entity visually