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

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