0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:10:43 -05:00

Fix code error in clearValues()

This commit is contained in:
Dev 2023-12-19 17:21:22 +00:00
parent 8a964aef29
commit c2cd9ff895

View File

@ -64,7 +64,7 @@ export class ApplicationContext
public clearValues(type: ContextVariableType): void
{
this.variables.has(type)
if (this.variables.has(type))
{
this.variables.delete(type);
}