Commit e1e9346d authored by 潘栩锋's avatar 潘栩锋 🚴

修复 GetBoltIndex_fromPos 实现

parent 11255317
...@@ -346,7 +346,9 @@ namespace FLY.Thick.FilmCasting.Server ...@@ -346,7 +346,9 @@ namespace FLY.Thick.FilmCasting.Server
public int GetBoltIndex_fromPos(int pos) public int GetBoltIndex_fromPos(int pos)
{ {
throw new Exception("不支持 GetBoltIndex_fromPos"); return this.bolts.FindIndex(r => r.Contain(pos));
//throw new Exception("不支持 GetBoltIndex_fromPos");
} }
#endregion #endregion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment