-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9204601
commit db997e0
Showing
19 changed files
with
394 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
use lazy_static::lazy_static; | ||
|
||
lazy_static! { | ||
pub static ref IS_SERVER: bool = check_for_server(); | ||
} | ||
|
||
pub fn check_for_server() -> bool { | ||
std::env::current_exe() | ||
.ok() | ||
.and_then(|pb| pb.file_name().map(|s| s.to_os_string())) | ||
.and_then(|s| s.into_string().ok()) | ||
.map(|s| s == "SonsOfTheForestDS.exe").unwrap() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub mod args; | ||
pub mod macros; | ||
pub mod paths; | ||
pub mod context; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
- Added `aighostplayer` command back in. | ||
- Removed `addcharacter` and `goto` commands. | ||
- Added a list of item identifiers (`ItemTools.Identifers`). | ||
- Added `DebugTools.Inspect` to inspect an object in Unity Explorer without having a dependency on it. | ||
- Added `finishblueprints` command to finish all blueprints in a radius. | ||
- Overhaul of SoundTools (@codengine). | ||
- Various changes to the SDK. | ||
- Added dedicated server support for linux. | ||
- Auto download of minimal local dotnet 6 installation if hostfxr can not be found. | ||
- Removed .net 4.7.2 dependency. | ||
- Make generating hooks opt-in. | ||
- Bumped Cpp2IL version to `2022.1.0-pre-release.14` |
Oops, something went wrong.