This repository has been archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 修复getPlayerList的内存泄露 - 修复registerCommand函数回调 - 新增PyEntity::getGameMode函数 - 新增PyBlockInstance::getPos/getDimensionId函数 - 修复PyEntity在MobHurtEvent中空指针获取字符串为空指针的问题 - 修改部分源文件
- Loading branch information
twoone3
committed
Feb 3, 2022
1 parent
9ed4e1b
commit d537c8d
Showing
20 changed files
with
379 additions
and
390 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 was deleted.
Oops, something went wrong.
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,7 @@ | ||
#pragma once | ||
#include <third-party/Nlohmann/fifo_json.hpp> | ||
|
||
using json_t = nlohmann::detail::value_t; | ||
|
||
//字符串转JSON,本插件采用 https://json.nlohmann.me 的JSON库 | ||
fifo_json StrToJson(std::string_view str); |
Oops, something went wrong.