We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12834a7 commit d3543b7Copy full SHA for d3543b7
BotCommands.cs
@@ -4,8 +4,6 @@
4
using UnityEngine;
5
6
namespace BotCMDs
7
-
8
- // BUG: Sometimes has trouble reading the first line as a command, especially if there's no \n afterwards (the python bot adds this though)
9
{
10
[BepInDependency("com.bepis.r2api")]
11
[BepInPlugin("com.Rayss.BotCommands", "Bot Commands", "0.1.0")]
@@ -48,9 +46,6 @@ private void Update()
48
46
49
47
while ((line = reader.ReadLine()) != null)
50
RoR2.Console.instance.SubmitCmd(null, line);
51
52
- //update the last max offset
53
- lastMaxOffset = reader.BaseStream.Position;
54
}
55
56
0 commit comments