File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ jobs:
127
127
- name : Update tag pointing to the previous nightly release
128
128
if : steps.check_nightly.outputs.release_exists
129
129
run : |
130
- curl -X PATCH \
130
+ curl --fail-with-body - X PATCH \
131
131
-H "Authorization: Bearer ${{ secrets.WORKFLOW_TOKEN }}" \
132
132
-H "Accept: application/vnd.github.v3+json" \
133
133
https://api.github.com/repos/${{ github.repository }}/git/refs/tags/${{ env.PREV_TAG }} \
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ void LuaStateWrapper::Initialize() {
44
44
{LUA_STRLIBNAME, luaopen_string},
45
45
{LUA_MATHLIBNAME, luaopen_math},
46
46
{LUA_DBLIBNAME, luaopen_debug},
47
+ {LUA_BITLIBNAME, luaopen_bit},
47
48
{LUA_JITLIBNAME, luaopen_jit},
48
49
{NULL , NULL } // End of array
49
50
};
Original file line number Diff line number Diff line change @@ -1368,12 +1368,12 @@ void MovableMan::Update() {
1368
1368
1369
1369
{
1370
1370
auto actorsSeeFuture = g_ThreadMan.GetPriorityThreadPool ().parallelize_loop (m_Actors.size (),
1371
- [&](int start, int end) {
1372
- ZoneScopedN (" Actors See" );
1373
- for (int i = start; i < end; ++i) {
1374
- m_Actors[i]->CastSeeRays ();
1375
- }
1376
- });
1371
+ [&](int start, int end) {
1372
+ ZoneScopedN (" Actors See" );
1373
+ for (int i = start; i < end; ++i) {
1374
+ m_Actors[i]->CastSeeRays ();
1375
+ }
1376
+ });
1377
1377
1378
1378
{
1379
1379
ZoneScopedN (" Actors Update" );
You can’t perform that action at this time.
0 commit comments