mirror of
https://github.com/eaglerforge/EaglerForgeInjector
synced 2025-07-25 07:01:20 -09:00
Fix pi optims - local
This commit is contained in:
parent
15d5ac69da
commit
a0b49275b6
@ -139,7 +139,7 @@ var main;(function(){`
|
|||||||
|
|
||||||
if(globalThis.optimizePi){
|
if(globalThis.optimizePi){
|
||||||
patchedFile = patchedFile.replaceAll(
|
patchedFile = patchedFile.replaceAll(
|
||||||
"3.1415927410125732 / 180",
|
"3.1415927410125732 / 180.0",
|
||||||
"0.01745"
|
"0.01745"
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -147,6 +147,11 @@ var main;(function(){`
|
|||||||
"3.1415927410125732",
|
"3.1415927410125732",
|
||||||
"3.14159"
|
"3.14159"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
patchedFile = patchedFile.replaceAll(
|
||||||
|
"0.01745329238474369",
|
||||||
|
"0.01745"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const extractInstanceMethodRegex =
|
const extractInstanceMethodRegex =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user