aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/addHPD.ts
blob: 3a7a853d1a6bf410ae017a940fe950522c5a1b60 (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;