Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamguxiang committed Mar 31, 2022
1 parent bf5d208 commit 9651eaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 36 deletions.
38 changes: 3 additions & 35 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,37 +1,5 @@
## [New features]

- Add packet filler auto complete
- Modify llse pl.talkAs, add pl.talkTo
- Add callback param to llse command.setup
- Add auto delay setup dynamic command
- Add some NBT APIs
- Add SynchedActorData APIs
- Add addon update support in AddonsHelper
- Add auto fix Addon List File
- Addon Command support match without color, #298
- Add simple fuzzy matching in addons command, #298
- Add isOperator API
- Add mc.setMaxPlayers(num)
- Add wsc.connectAsync

## [Bug fixes]

- Fix `ll list`
- Fix "Fix abnormal items", fix warning
- Fix logger error after exception
- Fix broadcast crash
- Add check in "Fix move view crash"
- Fix sendTextTalkPacket and add target param
- Fix origin.type #301
- Fix dynamic command register before server started
- Fix DynamicCommand::updateAvailableCommands crash
- Fix _runcmd crash
- Fix Addons Helper, #223
- Fix Addons Command and support remove by index
- Fix llse getSoftEnumNames, #315
- Fix unable to reload LLSE plugin, #316
- MobHurtEvent Add MagicDamage, #313
- Try fix crash in LLSE WebSocket onError callback
- Fix Schedule
- Fix LLSE TimeTaskSystem
- Fix dynamic command crash, #304, #283
- Fix 0tick schedule repeat #324
- Fix Scoreboard::getScore #229
- Fix server startup time, #322
5 changes: 4 additions & 1 deletion LiteLoader/Main/BuiltinBugFix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ TClasslessInstanceHook(__int64, "?LogIPSupport@RakPeerHelper@@AEAAXXZ")
else
{
original(this);
if (num == 2) Logger("Server").info("Done (" + fmt::format("{:.1f}", (endTime - startTime) * 1.0 / 1000) + "s)! For help, type \"help\" or \"?\"");
if (num == 2) {
endTime = clock();
Logger("Server").info("Done (" + fmt::format("{:.1f}", (endTime - startTime) * 1.0 / 1000) + "s)! For help, type \"help\" or \"?\"");
}
return 1;
}
}
Expand Down

0 comments on commit 9651eaa

Please sign in to comment.