Skip to content

Commit 328ebff

Browse files
committed
spelling
1 parent 0576665 commit 328ebff

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

.typos.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ extend-ignore-re = [
2828
# Ignore this specific hook string, which gearbox typo'd
2929
"\"WillowGame\\.WillowPlayerController:CanAcessOakUpsell\"",
3030
# Ignore the `EInventorySortType` enum prefix
31-
"IST_EquippedThenMajorTypeThenRarityThenSubtype",
32-
"IST_MajorTypeThenSubtypeThenRarity",
33-
"IST_MajorTypeThenRarityThenSubtype",
34-
"IST_Manufacturer",
35-
"IST_ClassRequirementThenRarity",
36-
"IST_Value",
37-
"IST_MAX",
31+
"IST_\\w+",
32+
# Ignore the `Ake` Ak Event prefix
33+
"Ake_\\w+",
34+
"AKE_\\w+",
3835
]
3936

4037
[default.extend-identifiers]

alt_use_vendors/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ Thanks to @Siggless
1818

1919
## Alt Use Vendors v2.0
2020
Near complete rewrite.
21-
- Removed depencency on AsyncUtil. Added decepency to Enums.
21+
- Removed dependency on AsyncUtil. Added decepency to Enums.
2222
- Added the option to sell all trash at weapon vendors.
2323
- Fixed that if updating costs were on, and if the displayed cost was higher than your wallet, you'd be unable to buy health/ammo even if you could afford the actual cost.
2424
- No longer hiding the alt use icon if you have nothing to buy, to allow other coop players to use them.
2525
- Removed the updating costs option. It's now always on, and uses hooks instead of polling.
2626

2727
## Alt Use Vendors v1.7
28-
- Fixed crash that occured when switching maps while standing near a vending machine.
28+
- Fixed crash that occurred when switching maps while standing near a vending machine.
2929

3030
## Alt Use Vendors v1.6
3131
- Added more optimization in anticipation of SDK version 0.7.10. Will fall back to current implementation when running on older versions.

alt_use_vendors/ak_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676

7777
# AkEvents are not loaded by default, and we don't want to do an "expensive" find object call, or a
78-
# truely expensive load package, so we'll just cache them (and keep alive) as we use them
78+
# truly expensive load package, so we'll just cache them (and keep alive) as we use them
7979
akevent_cache: dict[str, AkEvent] = {}
8080

8181

0 commit comments

Comments
 (0)