Add JSDoc info and ATM cache array

This commit is contained in:
Vortrex
2022-07-02 23:31:52 -05:00
parent 0ec8608b2b
commit 89bcbf9a8a

View File

@@ -38,6 +38,7 @@ let playerGUI = new Array(server.maxClients).fill(false);
* @property {Array} groundPlantCache * @property {Array} groundPlantCache
* @property {Array} purchasingVehicleCache * @property {Array} purchasingVehicleCache
* @property {Array} rentingVehicleCache * @property {Array} rentingVehicleCache
* @property {Array} atmLocationCache
*/ */
let serverData = { let serverData = {
vehicles: [], vehicles: [],
@@ -61,6 +62,7 @@ let serverData = {
groundPlantCache: [], groundPlantCache: [],
purchasingVehicleCache: [], purchasingVehicleCache: [],
rentingVehicleCache: [], rentingVehicleCache: [],
atmLocationCache: [],
}; };
// =========================================================================== // ===========================================================================