Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LocoNeko committed May 5, 2020
1 parent 826a2d5 commit 4c4bf2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Source/OldDefsCleanup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ namespace RoadsOfTheRim
{
public class RotR_ISR2G : ThingWithComps
{
public override void ExposeData()
public override void Tick()
{
base.ExposeData();
RoadsOfTheRim.DebugLog("Just made an ISR2G in " + this.Position.ToString());
base.Tick();
RoadsOfTheRim.DebugLog("AN ISR2G just ticked at " + this.Position.ToString());
}
}

public class RotR_AISR2G : ThingWithComps
{
public override void ExposeData()
public override void Tick()
{
base.ExposeData();
RoadsOfTheRim.DebugLog("Just made an AISR2G in " + this.Position.ToString());
base.Tick();
RoadsOfTheRim.DebugLog("AN ISR2G just ticked at " + this.Position.ToString());
}
}
}
Binary file modified v1.1/Assemblies/RoadsOfTheRim.dll
Binary file not shown.

0 comments on commit 4c4bf2d

Please sign in to comment.