Update screenshotBOF.cna

lol filename in cna was wrong
This commit is contained in:
CodeX 2022-10-25 22:55:05 +08:00 committed by GitHub
parent 6b2ddb5bc9
commit ea2ec16b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -11,11 +11,11 @@ alias screenshot_bof {
# figure out the arch of this session
$barch = barch($1);
# read in the right BOF file
$handle = openf(script_resource("screenshotBOF. $+ $barch $+ .obj"));
$handle = openf(script_resource("ScreenshotBOF. $+ $barch $+ .obj"));
$data = readb($handle, -1);
closef($handle);
# announce what we're doing
btask($1, "Running screenshot BOF by (@codex_tf2)");
# execute it.
beacon_inline_execute($1, $data, "go", $args);
}
}