glinty
02-28-2016, 05:33 AM
dear tpick maintainer...
when using tpick in the ground pick mode with 'auto lockpick repair' set to true, it looks like tpick assumes that when a lock gets bent it will be in your left hand. this fails as the pick is actually in your right hand.
see my patch below.
cheers,
glinty
leopold tmp$ git diff -w
diff --git a/tpick.lic b/tpick.lic
index b4dc09d..9d893f4 100644
--- a/tpick.lic
+++ b/tpick.lic
@@ -2188,7 +2188,11 @@ pick3 = proc{
sleep 0.2
end
end
- fput "lmas repair my #{checkleft}"
+ if solo_or_other == "ground"
+ fput "lmas repair my #{checkright}"
+ else
+ fput "lmas repair my #{checkleft}"
+ end
unless solo_or_other == "ground"
until checkright != nil
waitrt?
when using tpick in the ground pick mode with 'auto lockpick repair' set to true, it looks like tpick assumes that when a lock gets bent it will be in your left hand. this fails as the pick is actually in your right hand.
see my patch below.
cheers,
glinty
leopold tmp$ git diff -w
diff --git a/tpick.lic b/tpick.lic
index b4dc09d..9d893f4 100644
--- a/tpick.lic
+++ b/tpick.lic
@@ -2188,7 +2188,11 @@ pick3 = proc{
sleep 0.2
end
end
- fput "lmas repair my #{checkleft}"
+ if solo_or_other == "ground"
+ fput "lmas repair my #{checkright}"
+ else
+ fput "lmas repair my #{checkleft}"
+ end
unless solo_or_other == "ground"
until checkright != nil
waitrt?