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

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