mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-24 12:51:46 +00:00
Permission-less saveconfig
This commit is contained in:
parent
4b7a1e3fb0
commit
ac12778fa5
1 changed files with 4 additions and 0 deletions
|
@ -4167,11 +4167,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_DisplayPath(fname, FS_BASEGAMEONLY, displayname, sizeof(displayname));
|
||||
FS_CreatePath(fname, FS_BASEGAMEONLY);
|
||||
|
|
Loading…
Reference in a new issue