fix: remove debugging logs

removed logging used for debugging and changed ExplanationPart to return null as i don't know how to do it properly :(
This commit is contained in:
Maciej Pawłowski 2025-02-27 19:57:55 +01:00
parent f390de6ce3
commit c8b12c771d
Signed by: maciek
GPG key ID: 9FC186633565C9C7

View file

@ -28,14 +28,12 @@ public class StatPart_BodySizeTransferOffset : StatPart
val += sizeHediff.SizeOffset; val += sizeHediff.SizeOffset;
Log.Message(val); Log.Message(val);
} }
Log.Message("2");
} }
} }
Log.Message("1");
} }
public override string ExplanationPart(StatRequest req) public override string ExplanationPart(StatRequest req)
{ {
return "test"; return null;
} }
} }