Skip to content

Commit

Permalink
chore: remove Util deps
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Oct 26, 2024
1 parent 12065d0 commit dd0b88a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/ll/api/utils/StringUtils_win.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include "ll/api/base/StdInt.h"

#include "mc/deps/core/math/Color.h"
#include "mc/deps/core/utility/Util.h"
#include "mc/util/ColorFormat.h"

#include "Windows.h"
Expand Down
6 changes: 5 additions & 1 deletion src/ll/core/command/ModManage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ void registerModManageCommand() {
mod::ModRegistrar::getInstance().getSortedModNames()
);
auto& cmd = CommandRegistrar::getInstance()
.getOrCreateCommand(Util::toLower(selfModName), "LeviLamina's main command"_tr(), config.permission)
.getOrCreateCommand(
string_utils::toLowerCase(selfModName),
"LeviLamina's main command"_tr(),
config.permission
)
.alias("ll");
cmd.overload<LeviCommand3>().text("load").required("mod").execute(
[](CommandOrigin const&, CommandOutput& output, LeviCommand3 const& param) {
Expand Down

0 comments on commit dd0b88a

Please sign in to comment.