mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-04-19 05:11:06 +00:00
Permission-less saveconfig
This commit is contained in:
parent
8a019089a8
commit
46f4bc06fd
1 changed files with 4 additions and 0 deletions
|
@ -4164,11 +4164,15 @@ static void Cmd_WriteConfig_f(void)
|
|||
Q_snprintfz(fname, sizeof(fname), "%s", filename);
|
||||
COM_RequireExtension(fname, ".cfg", sizeof(fname));
|
||||
|
||||
// NZ:P Start -- Restricting saveconfig like this seems silly, but I imagine I'll eat those works eventually.
|
||||
#if 0
|
||||
if (Cmd_IsInsecure() && strncmp(fname, "data/", 5))
|
||||
{
|
||||
Con_Printf ("%s %s: not allowed\n", Cmd_Argv(0), Cmd_Args());
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
// NZ:P End
|
||||
|
||||
FS_NativePath(fname, FS_BASEGAMEONLY, sysname, sizeof(sysname));
|
||||
FS_CreatePath(fname, FS_BASEGAMEONLY);
|
||||
|
|
Loading…
Reference in a new issue