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

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