Files
jim_bridge/shared
Jim Shield 0eca7ae29e Fix CodeM item slot check for metadata function
The slot data for CodeM apparently returns as a string, this fixes it trying to compare a string to a number

```lua
            if v.name == item and v.slot <= lowestSlot then
```
to
```lua
            if v.name == item and tonumber(v.slot) <= lowestSlot then
```
2025-05-02 22:20:26 +01:00
..
2025-04-22 19:16:31 +01:00
2025-04-08 17:47:12 +01:00
2025-04-22 19:16:31 +01:00
2025-04-20 19:17:40 +01:00
2025-04-14 21:58:38 +01:00
2025-03-26 21:43:48 +00:00
2025-04-12 00:18:48 +01:00
2025-04-22 19:16:31 +01:00
2025-05-02 12:29:02 +01:00
2025-04-20 19:17:40 +01:00
2025-04-30 17:53:26 +01:00
2025-04-01 14:15:50 +01:00
2025-03-08 20:55:05 +00:00
2025-04-30 17:53:26 +01:00
2025-04-22 19:16:31 +01:00