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

/**
 * Declare the defendant not guilty
 */
export function notguilty() {
    client.sendRT("judgeruling#0");
}
window.notguilty = notguilty;