Skip to content

Commit

Permalink
fix:修复 Tpr 冷却时间获取失败
Browse files Browse the repository at this point in the history
  • Loading branch information
engsr6982 authored Oct 25, 2024
1 parent 623e486 commit 4c06b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tpr/TprManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ void TprManager::showTprMenu(Player& player) {
if (col.isCooldown("tpr", name)) {
utils::mc::sendText<utils::mc::MsgLevel::Error>(
player,
"TPR 冷却中,请稍后再试, 冷却时间: {0}"_tr(col.getCooldownString("tpa", name))
"TPR 冷却中,请稍后再试, 冷却时间: {0}"_tr(col.getCooldownString("tpr", name))
);
return;
} else {
Expand Down

0 comments on commit 4c06b41

Please sign in to comment.