Renamed other Torso like classes. Should reanme Torso pair (how? Idk. Still not working)

This commit is contained in:
Absolutely disgusting
2025-10-25 12:00:24 +04:00
parent ed321a375f
commit 2cb7d3d0da
21 changed files with 128 additions and 137 deletions

View File

@@ -193,7 +193,8 @@ namespace SlaveMatrix
public void (ConnectionInfo , EleD ed)
{
string text = ThisType.Name.Remove(ThisType.Name.Length - 1);
MethodInfo method = ThisType.GetMethod(.ToString().Remove(0, text.Length).Replace("_", ""));
var methodName = .ToString().Remove(0, text.Length).Replace("_", "");
MethodInfo method = ThisType.GetMethod(.ToString().Remove(0, text.Length).Replace("_", ""));
object[] parameters = new EleD[1] { ed };
method.Invoke(this, parameters);
}