Skip to content

Commit

Permalink
fix(typo): Fixing typo in Fetching Translation
Browse files Browse the repository at this point in the history
  • Loading branch information
blu133721 committed Mar 12, 2024
1 parent f2413ee commit bdb4e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void Command_ShopBuyHP(int playerID, const char **args, uint32_t argsCount, bool
} else {
db->Query("UPDATE %s SET credits = credits - %d WHERE steamid = '%llu'", "players_credits", CreditsToBuyHP, player->GetSteamID());
db->Query("UPDATE %s SET HasHPAccess = 1, HasHPActivated = 1 WHERE steamid = '%llu'", "players_features", player->GetSteamID());
player->SendMsg(HUD_PRINTTALK, "%s %s.", config->Fetch<const char*>("swiftly_shop.prefix")), FetchTranslation("swiftly_shop.BoughtFeature");
player->SendMsg(HUD_PRINTTALK, "%s %s.", config->Fetch<const char*>("swiftly_shop.prefix"), FetchTranslation("swiftly_shop.BoughtFeature"));
player->SendMsg(HUD_PRINTTALK, "%s The feature was activated by default.", config->Fetch<const char*>("swiftly_shop.prefix"));
player->HideMenu();
}
Expand Down

0 comments on commit bdb4e14

Please sign in to comment.