aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/addHPD.ts
blob: 12d1c0710aa4ae799f345b208655ed89d43b868a (plain)
1
2
3
4
5
6
7
8
9
import { client } from "../client";

/**
 * Increment defense health point.
 */
export function addHPD() {
    client.sendHP(1, client.hp[0] + 1);
}
window.addHPD = addHPD;