aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleASS.ts
blob: bfd764dbf387f1f39ca17f60a1a2548a00f1d542 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { setAOhost } from "../../client/aoHost";


/** 
* new asset url!!
* @param {Array} args packet arguments
*/
export const handleASS = (args: string[]) => {
    if(args[1] !== "None")
        setAOhost(args[1]);
}