1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

use map for setconvar

This commit is contained in:
Robin Appelman 2017-09-02 16:17:25 +02:00
commit b3e69f1af4
3 changed files with 16 additions and 15 deletions

View file

@ -96,7 +96,7 @@ export interface ParseSoundsPacket extends BasePacket {
export interface SetConVarPacket extends BasePacket {
packetType: 'setConVar';
vars: {[key: string]: string};
vars: Map<string, string>;
}
export interface TempEntitiesPacket extends BasePacket {