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

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