diff --git a/scripts/server/const.js b/scripts/server/const.js index 045880a8..de054cd3 100644 --- a/scripts/server/const.js +++ b/scripts/server/const.js @@ -8,10 +8,6 @@ // TYPE: Server (JavaScript) // =========================================================================== -// Sphere types -const AG_SPHERE_HOUSE = 1; -const AG_SPHERE_BUSINESS = 2; - // Prompts (used for client GUI prompt responses) const AG_PROMPT_CREATEFIRSTCHAR = 1; @@ -26,12 +22,18 @@ const AG_JOB_GARBAGE = 6; const AG_JOB_WEAPON = 7; const AG_JOB_DRUG = 8; -// Pickup Owner Types +// Pickup Types const AG_PICKUP_NONE = 0; const AG_PICKUP_JOB = 1; const AG_PICKUP_BUSINESS = 2; const AG_PICKUP_HOUSE = 3; +// Sphere Types +const AG_SPHERE_NONE = 0; +const AG_SPHERE_JOB = 1; +const AG_SPHERE_BUSINESS = 2; +const AG_SPHERE_HOUSE = 3; + // Vehicle Owner Types const AG_VEHOWNER_NONE = 0; const AG_VEHOWNER_PLAYER = 1;