• Server stuck and error spam in console?
    1 replies, posted
My server has been having weird issues after the last gmod server update (which fixed rotating props!). Server is running on debian linux and gets stuck many times a day. Server console through SSH isnt stuck like normally when server freezes and doesnt restart. It's spamming this error: ERROR: GAMEMODE:'PhysgunPickup' Failed: [gamemodes/sandbox/gamemode/shared.lua:172] stack overflow Garry? Anyone?
That would be this line. [lua] if ( ent:IsValid() && ent.PhysgunPickup ) then return ent:PhysgunPickup( ply ) -- this is line 172 end [/lua] It looks like one of the entities on your server doesn't like being picked up. Try typing (or copy-pasting) this in the server console: [code] lua_run local old = GAMEMODE.PhysgunPickup function GAMEMODE:PhysgunPickup(ply, ent) if ent:IsValid() then print(ent:GetClass()) end return old(ply, ent) end) [/code] Every time someone tries to pick up any entity, it should say that entity's name in the server console - so if it is caused by a broken entity, it should spam the name of the broken entity as well as the errors.
Sorry, you need to Log In to post a reply to this thread.