Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
Forgery config edits
Browse files Browse the repository at this point in the history
  • Loading branch information
egelja committed Jul 12, 2021
1 parent f3e8d9e commit bc89c9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modpack/overrides/config/fabrication/features.ini
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
;
; Primarily added because in prior versions the cap was 30 FPS and I
; thought it still was. Maybe this is nice if you have a 144Hz display?
uncap_menu_fps=false
uncap_menu_fps=true

; Changes player name tags to match names in the player list. Good in
; combination with nickname mods like Drogtor.
Expand Down Expand Up @@ -887,7 +887,7 @@
; to 1.8 or like always prior to 1.4.
;
; Demonstration video: https://unascribed.com/fabrication/billboard_drops.mp4
billboard_drops=true
billboard_drops=false

; Back in Survival Test, drops blinked white to make them stand out
; more. This is an implementation of that.
Expand All @@ -898,7 +898,7 @@
;
; Demonstration video: https://unascribed.com/fabrication/blinking_drops.mp4
; Survival Test video, for reference: https://unascribed.com/fabrication/survival_test.mp4
blinking_drops=unset
blinking_drops=false

; Resurrects the Beta 1.2-era animated falling block logo. Because it
; looked sweet and it is shameful they removed it.
Expand Down

1 comment on commit bc89c9d

@github-actions
Copy link

@github-actions github-actions bot commented on bc89c9d Jul 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

Unrecognized words (1)
maxchatlines
To accept these unrecognized words as correct, run the following commands

... in a clone of the git@github.com:MrAwesomeRocks/the-latest-summer-fun.git repository
on the dev branch:

update_files() {
perl -e '
my $new_expect_file=".github/actions/spelling/expect.txt";
use File::Path qw(make_path);
use File::Basename qw(dirname);
make_path (dirname($new_expect_file));
open FILE, q{<}, $new_expect_file; chomp(my @words = <FILE>); close FILE;
my @add=qw('"$patch_add"');
my %items; @items{@words} = @words x (1); @items{@add} = @add x (1);
@words = sort {lc($a)."-".$a cmp lc($b)."-".$b} keys %items;
open FILE, q{>}, $new_expect_file; for my $word (@words) { print FILE "$word\n" if $word =~ /\w/; };
close FILE;
system("git", "add", $new_expect_file);
'
}

comment_json=$(mktemp)
curl -L -s -S \
  -H "Content-Type: application/json" \
  "https://api.github.com/repos/MrAwesomeRocks/the-latest-summer-fun/comments/53390301" > "$comment_json"
comment_body=$(mktemp)
jq -r .body "$comment_json" > $comment_body
rm $comment_json

patch_add=$(perl -e '$/=undef; $_=<>; print "$1" if m{Unrecognized words[^<]*</summary>\n*```\n*([^<]*)```\n*</details>$}m;' < "$comment_body")
  
update_files
rm $comment_body
git add -u
If you see a bunch of garbage

If it relates to a ...

well-formed pattern

See if there's a pattern that would match it.

If not, try writing one and adding it to the patterns.txt file.

Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

Note that patterns can't match multiline strings.

binary-ish string

Please add a file path to the excludes.txt file instead of just accepting the garbage.

File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

Please sign in to comment.