Minetest logo

IRC log for #minetest-dev, 2017-09-03

| Channels | #minetest-dev index | Today | | Google Search | Plaintext

All times shown according to UTC.

Time Nick Message
02:19 CalebDavis joined #minetest-dev
02:22 CalebDavis i am trying to add a lua function that lets you access the player properties free_move,noclip,fast and return weather they are enabled or disabled for that player but when i tested it only returned the settings that were on the server client what am i doing wrong
02:22 CalebDavis i am using g_settings->getBool("free_move") to get the value
02:26 CalebDavis i am trying to determine by mod when a player is flying if there is already a way to do that please let me know
02:45 red-001 you are checking the servers settings
02:46 red-001 you need to get the client to send that data to the server if you want to use it
02:46 red-001 g_settings will work for now in singleplayer
02:46 red-001 but at best that's a hack and one that will hopefully be fixed soon
02:47 red-001 s/fixed/broken
02:47 CalebDavis so i should make an issue on github and test my mod with the g_settings
02:48 red-001 anyway what sort of mod are you making that you are writing c++ code
02:49 CalebDavis lua i am makeing better animations for minetest
02:49 CalebDavis but i love coding so i was trying to make a function to do what i need
03:03 srifqi joined #minetest-dev
03:11 electrodude512 joined #minetest-dev
03:44 Natechip joined #minetest-dev
03:44 Natechip joined #minetest-dev
03:54 Natechip joined #minetest-dev
03:54 Natechip joined #minetest-dev
04:11 Natechip joined #minetest-dev
06:37 Hunterz joined #minetest-dev
07:53 cx384 joined #minetest-dev
07:54 EDAKIRI joined #minetest-dev
07:54 celeron55 rubenwardy: it's working for me
08:08 Natechip joined #minetest-dev
08:08 Natechip joined #minetest-dev
08:39 lisac joined #minetest-dev
08:51 Krock joined #minetest-dev
10:21 nerzhul joined #minetest-dev
10:21 DS-minetest joined #minetest-dev
11:10 nerzhul hello, can someone review the awaited https://github.com/minetest/minetest/pull/6369 pr ?
11:11 nerzhul #6369
11:11 ShadowBot https://github.com/minetest/minetest/issues/6369 -- Implement minetest.register_on_userlimit_check by nerzhul
11:12 nerzhul oh Krock is on it :)
11:12 nerzhul i fixed your point
11:12 Krock I see. You pushed right when I commented xD
11:13 Krock since when do we throw fatal errors for wrong return values?
11:14 Krock a warning is enough
11:14 nerzhul it's a mod problem if it's not a boolean
11:14 nerzhul we always do a fatal error for this
11:16 Krock neither in on_respawnplayer nor in on_prejoinplayer will invalid return values cause a fatal error
11:18 nerzhul yeah, maybe these are too old callback then we were lazy ?
11:19 Krock *shrug*
11:35 Fixer joined #minetest-dev
12:10 Fixer joined #minetest-dev
12:36 Player_2 joined #minetest-dev
12:55 YuGiOhJCJ joined #minetest-dev
12:58 lisac joined #minetest-dev
13:48 nerzhul joined #minetest-dev
13:55 cx384 joined #minetest-dev
14:44 Taoki joined #minetest-dev
14:51 lisac joined #minetest-dev
15:16 Megaf joined #minetest-dev
15:32 Calinou joined #minetest-dev
15:40 Calinou joined #minetest-dev
16:55 nerzhul joined #minetest-dev
17:01 nerzhul i'm pushing a partial revert on 3cea7a349ac55df93b3eac1bf40365e00e472480 (const & on sharedbuf) on network part to fix #6354
17:01 ShadowBot https://github.com/minetest/minetest/issues/6354 -- Memory corruption
17:05 Calinou joined #minetest-dev
17:12 Calinou joined #minetest-dev
17:23 paramat joined #minetest-dev
17:23 nerzhul rubenwardy, i merge #6351 on tomorrow morning (~14h)
17:23 ShadowBot https://github.com/minetest/minetest/issues/6351 -- Implement mod communication channels by nerzhul
17:24 paramat #6352 is ready
17:24 ShadowBot https://github.com/minetest/minetest/issues/6352 -- Ores: Add stratum ore by paramat
17:30 nerzhul sfan5, thanks for the doc review, it's not easy to explain :p
17:30 sfan5 yeah i'll review the rest too
17:32 Krock LGTM, paramat
17:33 nerzhul if answer to my question is yes you have my approval paramat
17:33 nerzhul i merge #6371 (will go to lunch)
17:33 ShadowBot https://github.com/minetest/minetest/issues/6371 -- Use member initialization list instead of the constructor's body by lupoDharkael
17:36 paramat answer is yes
17:37 paramat thanks for review
17:54 DS-minetest joined #minetest-dev
18:58 Natechip joined #minetest-dev
18:58 Natechip joined #minetest-dev
19:10 Fixer joined #minetest-dev
19:21 ThomasMonroe joined #minetest-dev
19:46 Wuzzy joined #minetest-dev
19:50 YuGiOhJCJ joined #minetest-dev
19:51 CalebDavis joined #minetest-dev
20:14 nerzhul merging #6352 & #6331 in ~ 5 mins
20:14 ShadowBot https://github.com/minetest/minetest/issues/6352 -- Ores: Add stratum ore by paramat
20:14 ShadowBot https://github.com/minetest/minetest/issues/6331 -- Add build date to minetest --version and increase readability by HybridDog
20:27 paramat joined #minetest-dev
20:45 CalebDavis i am trying to add a function to the lua API that lets the server get the toggles for fast fly and noclip per client how would i get the client to send that info to the server
20:49 paramat rubenwardy updated #6361 might merge later
20:49 ShadowBot https://github.com/minetest/minetest/issues/6361 -- World start time: Add as setting, default unchanged by paramat
20:51 paramat CalebDavis maybe #6219 has the answer? it seems to send all controls to server
20:51 ShadowBot https://github.com/minetest/minetest/issues/6219 -- WIP: Server side movement by bendeutsch
21:12 CalebDavis if i were to make a pull request how would i make it "depend" on #6219
21:12 ShadowBot https://github.com/minetest/minetest/issues/6219 -- WIP: Server side movement by bendeutsch
22:11 Xio joined #minetest-dev
23:32 YuGiOhJCJ joined #minetest-dev
23:52 paramat joined #minetest-dev

| Channels | #minetest-dev index | Today | | Google Search | Plaintext