Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasylidong committed Apr 17, 2024
1 parent 928752c commit 63e6332
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified addons/sourcemod/plugins/extend/l4d_stats.smx
Binary file not shown.
Binary file modified addons/sourcemod/plugins/funcommands.smx
Binary file not shown.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/extend/l4d_stats.sp
Original file line number Diff line number Diff line change
Expand Up @@ -9865,7 +9865,7 @@ public CheckSurvivorsWin()
// HardCore 奖励增加50%
if(IsAnne() == 2)
{
Score *= 1.5;
Score = RoundToFloor(1.5 * Score);
}

if(!CheckIsOfficalMap())return;
Expand Down Expand Up @@ -11171,7 +11171,7 @@ public bool StopMapTiming()
{
if (GetConVarInt(cvar_AnnounceMode))
{
StatsPrintToChatAll("此次结果因修改难度或开启高级人机导致 \x04无效 \x01,不记录这张地图游戏时间!");
StatsPrintToChatAll("此次结果因修改难度或开启高级人机或使用管理员功能导致 \x04无效 \x01,不记录这张地图游戏时间!");
}
MapTimingStartTime = -1.0;
MapTimingBlocked = true;
Expand Down
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/sourcemod/funcommands/noclip.sp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void OnLibraryAdded(const char[] name) {
}

public void OnLibraryRemoved(const char[] name) {
if (strcmp(name, "WeaponHandling") == 0)
if (strcmp(name, "rpg") == 0)
g_bRPG = false;
}

Expand Down

0 comments on commit 63e6332

Please sign in to comment.