Skip to content

Commit

Permalink
Update to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Albertinko committed May 9, 2024
1 parent b172451 commit 8fc4ef5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions addons/amxmodx/data/lang/rt_library.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[en]
RT_CHAT_TAG = ^4[RT]^t
RT_CHAT_TAG = ^4[RT]
RT_ANTI_FLOOD = ^3Wait before the next resurrection/planting
RT_CHANGE_TEAM = ^3The player changed the team
RT_ACTIVATOR_EXISTS = ^3The player is already being resurrected/planting
Expand Down Expand Up @@ -29,7 +29,7 @@ RT_DHUD_REVIVE2 = %n RESURRECTS YOU
RT_DHUD_PLANTING = YOU'RE PLANTING %n

[ru]
RT_CHAT_TAG = ^4[RT]^t
RT_CHAT_TAG = ^4[RT]
RT_ANTI_FLOOD = ^3Подождите перед следующим воскрешением/минированием
RT_CHANGE_TEAM = ^3Игрок изменил команду
RT_ACTIVATOR_EXISTS = ^3Игрока уже воскрешают/минируют
Expand Down
4 changes: 2 additions & 2 deletions addons/amxmodx/scripting/include/rt_api.inc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#endif
#define _rt_api_included

public stock const VERSION[] = "1.3.1";
public stock const VERSION[] = "1.3.2";
public stock const AUTHORS[] = "DEV-CS.RU Community";

/**
Expand Down Expand Up @@ -211,5 +211,5 @@ stock NotifyClient(const pPlayer, const iSender, any:...) {
new szMessage[MAX_MESSAGE_LENGTH];
SetGlobalTransTarget(pPlayer);
vformat(szMessage, charsmax(szMessage), "%l", 3);
client_print_color(pPlayer, iSender, "%l%s", "RT_CHAT_TAG", szMessage);
client_print_color(pPlayer, iSender, "%l %s", "RT_CHAT_TAG", szMessage);
}

0 comments on commit 8fc4ef5

Please sign in to comment.