mirror of
https://github.com/edubart/otclient.git
synced 2025-11-30 23:26:51 +01:00
Market fix, and a few other things:
* Added 'button' param to g_mouse.bindPress * Added 'lower' param to table.contains * UIComboBox:onOptionChange should signalcall? * Changed the experience bar color * Market buy/sell 'amount' window will now show the cost of the amount you are selecting
This commit is contained in:
@@ -65,8 +65,8 @@ function table.findbykey(t, key, lowercase)
|
||||
end
|
||||
end
|
||||
|
||||
function table.contains(t, value)
|
||||
return table.find(t, value) ~= nil
|
||||
function table.contains(t, value, lowercase)
|
||||
return table.find(t, value, lowercase) ~= nil
|
||||
end
|
||||
|
||||
function table.findkey(t, key)
|
||||
|
||||
Reference in New Issue
Block a user