Time |
Nick |
Message |
00:08 |
|
Alias joined #minetest |
00:12 |
|
AliasAlreadyTake joined #minetest |
00:26 |
Guest3350 |
was there a mod to add dual wielding? |
00:42 |
|
Soni joined #minetest |
00:45 |
mazes_80 |
would be nice |
00:48 |
mazes_80 |
I ask myself if it really would be useful to add metatable to allow 'hide' or 'alter/add' table properties, I think setmetable(protected_table, nil) would still be allowed |
00:49 |
mazes_80 |
ping ElCeejo |
00:52 |
mazes_80 |
ElCeejo: animalia/api/behaviors.lua:494: vector not initialized |
01:25 |
|
Lesha_Vel joined #minetest |
01:35 |
|
Verticen joined #minetest |
01:48 |
lagash |
Out of curiosity, are there any mods out there that use some sort of SQL database? Perhaps one more heavyweight than, say, SQLite? |
01:50 |
sofar |
insidethebox uses lsqlite3 |
01:50 |
sofar |
but that's a game, not a mod |
01:50 |
sofar |
there's a few more mods that use lsqlite3 (sauth, sban) |
01:51 |
lagash |
what about LuaSQL? |
01:53 |
MTDiscord |
<Jonathon> verbanna uses sqlite |
01:53 |
MTDiscord |
<Jonathon> so does sban |
02:00 |
lagash |
they just use sqlite because there's no need for multiple mods accessing the same database, right? |
02:01 |
lagash |
or more generally, more than one user/connection at once |
02:09 |
|
Hawk777 joined #minetest |
02:10 |
|
olliy joined #minetest |
02:34 |
|
grouinos joined #minetest |
03:01 |
|
Verticen joined #minetest |
03:02 |
|
frostsnow joined #minetest |
03:17 |
|
Gustavo6046 joined #minetest |
03:20 |
|
Gustavo6046 joined #minetest |
03:23 |
rubenwardy |
lagash: mods run in the same process |
03:24 |
rubenwardy |
so there's no problem with multiple mods using the same db |
03:24 |
rubenwardy |
the reason they use databases is because other methods don't scale well enough |
03:24 |
rubenwardy |
and they use sqlite because it's easy and portable |
03:28 |
MTDiscord |
<Jonathon> https://github.com/minetest/minetest/issues/3374 |
03:28 |
MTDiscord |
<Jonathon> and https://github.com/minetest/minetest/issues/10371 which really should have stayed open over ^ |
03:29 |
MTDiscord |
<Jonathon> (in my opinion) |
03:48 |
|
mrgreymatter joined #minetest |
04:00 |
|
MTDiscord joined #minetest |
05:01 |
|
riff-IRC joined #minetest |
05:19 |
|
v-rob joined #minetest |
05:26 |
|
Norkle joined #minetest |
05:48 |
|
appguru joined #minetest |
06:02 |
|
jvalleroy joined #minetest |
06:02 |
|
jvalleroy joined #minetest |
06:39 |
|
calcul0n joined #minetest |
06:57 |
|
appguru joined #minetest |
06:59 |
|
TomTom joined #minetest |
07:30 |
|
jadzia joined #minetest |
07:45 |
|
toulene joined #minetest |
07:47 |
|
appguru joined #minetest |
07:56 |
|
toulene joined #minetest |
07:57 |
|
v-rob joined #minetest |
08:01 |
|
appguru joined #minetest |
08:08 |
|
lemonzest joined #minetest |
08:39 |
|
mrgreymatter joined #minetest |
08:44 |
|
toulene joined #minetest |
09:04 |
|
Fixer joined #minetest |
09:43 |
|
specing joined #minetest |
10:02 |
|
Wuzzy joined #minetest |
10:02 |
MinetestBot |
Wuzzy: Mar-05 15:03 UTC <BuckarooBanzai> fyi: https://github.com/minetest-mirrors/hudbars/issues/1 |
10:25 |
|
appguru joined #minetest |
10:32 |
|
appguru joined #minetest |
11:26 |
|
luk3yx joined #minetest |
11:26 |
|
rj1 joined #minetest |
11:50 |
|
definitelya joined #minetest |
12:09 |
|
panwolfram joined #minetest |
12:18 |
|
proller joined #minetest |
12:19 |
MTDiscord |
<Fleckenstein> Yea please transfer the MCL2 topic to cora |
12:19 |
MTDiscord |
<Fleckenstein> or where am i supposed to request it? |
12:33 |
|
appguru joined #minetest |
12:41 |
MTDiscord |
<luatic> On the forums, I guess |
12:46 |
|
grouinos joined #minetest |
13:22 |
|
kamdard__ joined #minetest |
13:22 |
|
proller joined #minetest |
13:23 |
|
toulene joined #minetest |
13:23 |
|
erlehmann joined #minetest |
13:24 |
MTDiscord |
<Carfalious> meme clone LMAOO with the windows join sound |
13:24 |
MTDiscord |
<Carfalious> XD |
13:30 |
ROllerozxa |
Carfalious: sir this is an IRC channel |
13:31 |
MTDiscord |
<Carfalious> okay |
13:51 |
rubenwardy |
Fleckenstein: done |
14:00 |
|
proller joined #minetest |
14:27 |
lagash |
rubenwardy: so, mods aren't multi-threaded, and each mod can have their own connection to the same SQLite DB? |
14:27 |
rubenwardy |
they'd share a connection, one mod would expose a Lua API |
14:52 |
|
v-rob joined #minetest |
15:12 |
|
v-rob joined #minetest |
15:18 |
MTDiscord |
<luatic> multiple connections to the same DB won't work due to SQLite locking the DB? |
15:27 |
|
Hawk777 joined #minetest |
15:39 |
lagash |
rubenwardy: and if the mods weren't coordinated prior..? |
15:39 |
rubenwardy |
then they can't share the DB |
15:40 |
rubenwardy |
to share the db, they need to work together |
15:41 |
lagash |
and since it's SQLite, no need for a connection pool or anything? |
15:45 |
|
nuala joined #minetest |
16:11 |
|
v-rob joined #minetest |
16:32 |
|
Taoki joined #minetest |
16:49 |
|
GNUHacker joined #minetest |
17:00 |
|
RhineDevil joined #minetest |
17:09 |
|
olliy joined #minetest |
17:17 |
|
Wuzzy joined #minetest |
17:40 |
|
Talkless joined #minetest |
17:44 |
|
RhineDevil joined #minetest |
17:57 |
|
v-rob joined #minetest |
18:14 |
|
Guest82 joined #minetest |
18:17 |
Guest82 |
Hello, I installed Minetest on debian using the command line. It works but the text is too small to read. I tried xrandr to change my screen resolution but that didn't work. What other suggestions are there? I tried looking at the minetest wiki but I haven't found a useful article. |
18:27 |
RhineDevil |
Guest82: are you using a terminal emulator or what |
18:27 |
RhineDevil |
or are you talking about the GUI |
18:31 |
Guest82 |
no i installed it by typing "sudo apt install minetest". I use KDE as my DE |
18:36 |
nuala |
Guest82: are you talking about ingame text or command line text? |
18:37 |
Guest82 |
The ingame text. The moment i started it for the first time everthing was small. |
18:44 |
|
GNUHacker left #minetest |
19:07 |
|
___nick___ joined #minetest |
19:35 |
|
olliy joined #minetest |
19:39 |
|
sobkas joined #minetest |
19:47 |
|
ronoaldo joined #minetest |
19:52 |
|
Verticen joined #minetest |
19:59 |
|
appguru joined #minetest |
20:03 |
MinetestBot |
[git] grorp -> minetest/minetest: Fix footsteps for players whose collision box min y != 0 (#12110) 289c3ff https://github.com/minetest/minetest/commit/289c3ff37723402bab71e2849abe060403ef8f41 (2022-03-14T20:01:18Z) |
20:03 |
MinetestBot |
[git] setupminimal -> minetest/minetest: Fix memory leak in EmergeManager e54f5e5 https://github.com/minetest/minetest/commit/e54f5e544f27860ba2fa6bfea1a4e1fa3f5d4941 (2022-03-14T20:01:36Z) |
20:05 |
|
___nick___ joined #minetest |
20:08 |
|
___nick___ joined #minetest |
20:14 |
|
Fixer_ joined #minetest |
20:18 |
|
Oksanaa joined #minetest |
20:20 |
|
Norkle joined #minetest |
20:31 |
|
definitelya_ joined #minetest |
20:31 |
|
v-rob joined #minetest |
20:40 |
|
kabou joined #minetest |
20:52 |
|
proller joined #minetest |
21:09 |
|
LibreGNU joined #minetest |
21:12 |
|
proller joined #minetest |
21:42 |
|
specing_ joined #minetest |
21:42 |
|
v-rob joined #minetest |
22:49 |
|
kabou joined #minetest |
23:00 |
|
Sven_vB joined #minetest |
23:02 |
|
proller joined #minetest |
23:06 |
|
v-rob joined #minetest |
23:08 |
|
fluxionary joined #minetest |
23:32 |
|
panwolfram joined #minetest |