Skip to content

Commit

Permalink
負荷軽減
Browse files Browse the repository at this point in the history
  • Loading branch information
TORISOUP committed Jun 12, 2016
1 parent 78d6c52 commit f97e42a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Inferno/ChaosMode/ChaosMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private IEnumerable<Object> ChaosPedAction(Ped ped)
break;
}

if (!ped.IsInRangeOf(PlayerPed.Position, chaosModeSetting.Radius))
if (!ped.IsInRangeOf(PlayerPed.Position, chaosModeSetting.Radius + 10))
{
break;
}
Expand Down
2 changes: 1 addition & 1 deletion Inferno/InfernoScripts/World/ChaosAirPlane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected override void Setup()
//時間差で戦闘機を出現させる
private IEnumerable<object> StartChaosPlanes()
{
foreach (var i in Enumerable.Range(0, 4))
foreach (var i in Enumerable.Range(0, 2))
{
StartCoroutine(PlaneManageCoroutine(i));
yield return WaitForSeconds(1);
Expand Down

0 comments on commit f97e42a

Please sign in to comment.