├── .gitignore ├── LICENSE ├── README.md ├── garrysmod └── lua │ └── autorun │ └── server │ └── gm_dumptimers-fix.lua ├── premake5.lua └── src └── fix.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | projects -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deviatt/gm_dumptimers-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deviatt/gm_dumptimers-fix/HEAD/README.md -------------------------------------------------------------------------------- /garrysmod/lua/autorun/server/gm_dumptimers-fix.lua: -------------------------------------------------------------------------------- 1 | require("dumptimers_fix") 2 | -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deviatt/gm_dumptimers-fix/HEAD/premake5.lua -------------------------------------------------------------------------------- /src/fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deviatt/gm_dumptimers-fix/HEAD/src/fix.cpp --------------------------------------------------------------------------------