Skip to content

Commit

Permalink
fix co level number in warp
Browse files Browse the repository at this point in the history
  • Loading branch information
Dregu committed Mar 20, 2021
1 parent fdee5ad commit a4d4f71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/injected/ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1853,7 +1853,7 @@ void render_narnia()
target->theme = 16;
break;
case 704:
target->world = 7;
target->world = 8;
target->level = 5;
target->theme = 10;
break;
Expand Down Expand Up @@ -2006,10 +2006,10 @@ void render_narnia()
ImGui::Text("Cosmic Ocean");
ImGui::SameLine(100.0f);
if (ImGui::Button("7-5##Warp7-5"))
warp(7, 5, 10);
warp(8, 5, 10);
ImGui::SameLine();
if (ImGui::Button("7-98##Warp7-98"))
warp(7, 98, 10);
warp(8, 98, 10);
}

void render_camera()
Expand Down

0 comments on commit a4d4f71

Please sign in to comment.