Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron C Robinson committed Sep 19, 2017
1 parent c2c6439 commit b2776be
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
Binary file modified Assemblies/SeasonalWeather.dll
Binary file not shown.
34 changes: 34 additions & 0 deletions Assemblies/SeasonalWeather.dll.CodeAnalysisLog.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="c:\program files (x86)\microsoft visual studio\2017\community\team tools\static analysis tools\fxcop\Xml\CodeAnalysisReport.xsl"?>
<FxCopReport Version="15.0">
<Localized>
<String Key="Category">Category</String>
<String Key="Certainty">Certainty</String>
<String Key="CollapseAll">Collapse All</String>
<String Key="CheckId">Check Id</String>
<String Key="Error">Error</String>
<String Key="Errors">error(s)</String>
<String Key="ExpandAll">Expand All</String>
<String Key="Help">Help</String>
<String Key="Line">Line</String>
<String Key="Messages">message(s)</String>
<String Key="LocationNotStoredInPdb">[Location not stored in Pdb]</String>
<String Key="Project">Project</String>
<String Key="Resolution">Resolution</String>
<String Key="Rule">Rule</String>
<String Key="RuleFile">Rule File</String>
<String Key="RuleDescription">Rule Description</String>
<String Key="Source">Source</String>
<String Key="Status">Status</String>
<String Key="Target">Target</String>
<String Key="Warning">Warning</String>
<String Key="Warnings">warning(s)</String>
<String Key="ReportTitle">Code Analysis Report</String>
</Localized>
<Exceptions>
<Exception Keyword="CA0068" Kind="Engine" TreatAsWarning="True">
<Type>Microsoft.FxCop.Sdk.FxCopException</Type>
<ExceptionMessage>Debug information could not be found for target assembly 'SeasonalWeather.dll'. For best analysis results, include the .pdb file with debug information for 'SeasonalWeather.dll' in the same directory as the target assembly.</ExceptionMessage>
</Exception>
</Exceptions>
</FxCopReport>
Empty file.
2 changes: 1 addition & 1 deletion Source/SeasonalWeather/WeatherWorkers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public override void WeatherTick(Map map, float lerpFactor)
{
base._WeatherTick(map, lerpFactor);

if ( GenHelper.IsHashIntervalTick(this, hashInterval))
if ( this.IsHashIntervalTick(hashInterval))
{
if (this.Spawning)
{
Expand Down

0 comments on commit b2776be

Please sign in to comment.