add_custom_property()

in src/objects/serverside/custom-data.js [499:506]


	add_custom_property(key : string, value: string) {

		if(this.custom_properties == null) {
			this.custom_properties = {};
		}

		this.custom_properties[key] = value;
	}