Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 415a1ec283 | |||
| 4e4b2bd32d |
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors>cultbaus</Authors>
|
<Authors>cultbaus</Authors>
|
||||||
<Company>-</Company>
|
<Company>-</Company>
|
||||||
<Version>0.0.3.12</Version>
|
<Version>0.0.3.14</Version>
|
||||||
<Description>This plugin manipulates flytext.</Description>
|
<Description>This plugin manipulates flytext.</Description>
|
||||||
<Copyright>-</Copyright>
|
<Copyright>-</Copyright>
|
||||||
<PackageProjectUrl>https://github.com/cultbaus/CBT</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/cultbaus/CBT</PackageProjectUrl>
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ public unsafe class SheetManager : S.IDisposable
|
|||||||
this.actionCache[actionID] = row;
|
this.actionCache[actionID] = row;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.actionCache[actionID];
|
return row;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Status? GetStatusRow(int value1)
|
private Status? GetStatusRow(int value1)
|
||||||
@@ -96,7 +96,7 @@ public unsafe class SheetManager : S.IDisposable
|
|||||||
this.statusCache[value1] = row;
|
this.statusCache[value1] = row;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.statusCache[value1];
|
return row;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Item? GetItemRow(int value1)
|
private Item? GetItemRow(int value1)
|
||||||
@@ -107,6 +107,6 @@ public unsafe class SheetManager : S.IDisposable
|
|||||||
this.itemCache[value1] = row;
|
this.itemCache[value1] = row;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.itemCache[value1];
|
return row;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -31,7 +31,7 @@ public unsafe class FlyTextArtist
|
|||||||
|
|
||||||
flyTextEvents.ForEach(e =>
|
flyTextEvents.ForEach(e =>
|
||||||
{
|
{
|
||||||
if (e.Kind != FlyTextKind.None)
|
if (e.Kind != FlyTextKind.None && e.Target != null)
|
||||||
{
|
{
|
||||||
var qt = Service.Tree.GetQuadTree(e.Target->GetGameObjectId().ObjectId);
|
var qt = Service.Tree.GetQuadTree(e.Target->GetGameObjectId().ObjectId);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user