Skip to content

Commit

Permalink
idk what this was
Browse files Browse the repository at this point in the history
  • Loading branch information
EvaisaDev committed Oct 15, 2024
1 parent 00d0162 commit a607ed8
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 10 deletions.
Binary file modified evaisa.mp/bin/NoitaPatcher/noitapatcher.dll
Binary file not shown.
Binary file modified evaisa.mp/bin/NoitaPatcher/noitapatcher.pdb
Binary file not shown.
Binary file modified evaisa.mp/bin/NoitaPatcher/noitapatcher/nsew/nsew_native.dll
Binary file not shown.
Binary file modified evaisa.mp/bin/luasteam.dll
Binary file not shown.
Binary file modified evaisa.mp/bin/luasteam.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions evaisa.mp/files/scripts/lobby_ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ local default_lobby_menus = {

edit_lobby_type = internal_type_map[steam_utils.GetLobbyData("LobbyType")]

local true_max = 32
local true_max = 250

local default_max_players = 8

Expand Down Expand Up @@ -2520,7 +2520,7 @@ local windows = {
lobby_type = lobby_type or 1
gamemode_index = gamemode_index or 1

local true_max = 32
local true_max = 250

local default_max_players = 8

Expand Down
25 changes: 18 additions & 7 deletions evaisa.mp/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ dofile("mods/evaisa.mp/version.lua")

noita_online_download = "https://github.com/EvaisaDev/noita-online/releases"
exceptions_in_logger = true
dev_mode = false
dev_mode = true
debugging = false
disable_print = true
disable_print = false
trailer_mode = false
disable_error_catching = false

Expand Down Expand Up @@ -535,7 +535,9 @@ if(not failed_to_load)then
local players = EntityGetWithTag("player_unit") or {}

if(not is_wand_pickup)then
profiler_ui.apply_profiler_rate()
if(imgui)then
profiler_ui.apply_profiler_rate()
end
end

if (players[1]) then
Expand Down Expand Up @@ -772,8 +774,13 @@ if(not failed_to_load)then
steam_overlay_open = false
end]]

profiler_ui.pre_update()

if(imgui)then
profiler_ui.pre_update()
else
if (input ~= nil and input:WasKeyPressed("f8")) then
GamePrint("Cannot use profiler without dear imgui installed.")
end
end
--input:Update()

wake_up_waiting_threads(1)
Expand Down Expand Up @@ -1115,7 +1122,9 @@ if(not failed_to_load)then
if (lobby_code ~= nil) then

if (lobby_gamemode ~= nil and game_in_progress) then
lobby_gamemode.late_update(lobby_code)
if (lobby_gamemode.late_update) then
lobby_gamemode.late_update(lobby_code)
end

--[[
local messages = steam.networking.pollMessages() or {}
Expand All @@ -1137,7 +1146,9 @@ if(not failed_to_load)then
end


profiler_ui.post_update()
if(imgui)then
profiler_ui.post_update()
end

end).catch(function(ex)
exception_log:print(tostring(ex))
Expand Down
2 changes: 1 addition & 1 deletion evaisa.mp/version.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION_FLAVOR_TEXT = "$mp_release" -- mp_release
MP_VERSION = 379
MP_VERSION = 382
MP_PRESET_VERSION = 2

0 comments on commit a607ed8

Please sign in to comment.