mirror of
https://github.com/luanti-org/luanti.git
synced 2025-09-15 18:57:08 +00:00
Update github URL references (#15705)
This commit is contained in:
parent
f592b57dc6
commit
b5e084c9a5
32 changed files with 66 additions and 68 deletions
|
@ -392,7 +392,7 @@ void ParticleSpawner::spawnParticle(ClientEnvironment *env, float radius,
|
|||
}
|
||||
|
||||
case ParticleParamTypes::AttractorKind::line: {
|
||||
// https://github.com/minetest/minetest/issues/11505#issuecomment-915612700
|
||||
// <https://github.com/luanti-org/luanti/issues/11505#issuecomment-915612700>
|
||||
const auto& lorigin = attractor_origin;
|
||||
v3f ldir = attractor_direction;
|
||||
ldir.normalize();
|
||||
|
@ -408,7 +408,7 @@ void ParticleSpawner::spawnParticle(ClientEnvironment *env, float radius,
|
|||
}
|
||||
|
||||
case ParticleParamTypes::AttractorKind::plane: {
|
||||
// https://github.com/minetest/minetest/issues/11505#issuecomment-915612700
|
||||
// <https://github.com/luanti-org/luanti/issues/11505#issuecomment-915612700>
|
||||
const v3f& porigin = attractor_origin;
|
||||
v3f normal = attractor_direction;
|
||||
normal.normalize();
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
/*
|
||||
* Redis is not a good fit for Minetest and only still supported for legacy as
|
||||
* well as advanced use case reasons, see:
|
||||
* <https://github.com/minetest/minetest/issues/14822>
|
||||
* <https://github.com/luanti-org/luanti/issues/14822>
|
||||
*
|
||||
* Do NOT extend this backend with any new functionality.
|
||||
*/
|
||||
|
|
|
@ -148,7 +148,7 @@ void set_default_settings()
|
|||
settings->setDefault("keymap_minimap", "KEY_KEY_V");
|
||||
settings->setDefault("keymap_console", "KEY_F10");
|
||||
|
||||
// See https://github.com/minetest/minetest/issues/12792
|
||||
// see <https://github.com/luanti-org/luanti/issues/12792>
|
||||
settings->setDefault("keymap_rangeselect", has_touch ? "KEY_KEY_R" : "");
|
||||
|
||||
settings->setDefault("keymap_freemove", "KEY_KEY_K");
|
||||
|
|
|
@ -51,8 +51,8 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#if defined(__MINGW32__) && !defined(__clang__)
|
||||
// see https://github.com/minetest/minetest/issues/14140 or
|
||||
// https://github.com/minetest/minetest/issues/10137 for one of the various issues we had
|
||||
// see <https://github.com/luanti-org/luanti/issues/14140> or
|
||||
// <https://github.com/luanti-org/luanti/issues/10137> for some of the issues we had
|
||||
#error ==================================
|
||||
#error MinGW gcc has a broken TLS implementation and is not supported for building \
|
||||
Luanti. Look at testTLS() in test_threading.cpp and see for yourself. \
|
||||
|
|
|
@ -325,7 +325,7 @@ void TestMapBlock::testLoadNonStd(IGameDef *gamedef)
|
|||
* 2176 IDs (but only the first 128 could use the full range of param2), and
|
||||
* finally 16-bit like today.
|
||||
* The content_width field in MapBlocks was used around that time during the
|
||||
* transition to 16-bit: <https://github.com/minetest/minetest/commit/ea62ee4b61371107ef3d693bda4c410ba02ca7e6>
|
||||
* transition to 16-bit: <https://github.com/luanti-org/luanti/commit/ea62ee4b61371107ef3d693bda4c410ba02ca7e6>
|
||||
* A content_width of 1 would normally never appear with a version > 24, but
|
||||
* it is in fact perfectly possible to serialize a block in todays format with
|
||||
* shortened IDs.
|
||||
|
|
|
@ -204,10 +204,10 @@ private:
|
|||
which affected only 32-bit MinGW. It was caused by incorrect calling convention
|
||||
and fixed in GCC in 2020.
|
||||
|
||||
Occurrences in Minetest:
|
||||
* <https://github.com/minetest/minetest/issues/10137> (2020)
|
||||
* <https://github.com/minetest/minetest/issues/12022> (2022)
|
||||
* <https://github.com/minetest/minetest/issues/14140> (2023)
|
||||
Occurrences in Luanti:
|
||||
* <https://github.com/luanti-org/luanti/issues/10137> (2020)
|
||||
* <https://github.com/luanti-org/luanti/issues/12022> (2022)
|
||||
* <https://github.com/luanti-org/luanti/issues/14140> (2023)
|
||||
*/
|
||||
void TestThreading::testTLS()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue