Skip to content

Commit 1e87fd7

Browse files
authored
Update URLs for pipeworks, basic_materials and unifieddyes (#252)
1 parent f5a37b1 commit 1e87fd7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ their own manuals:
3636

3737
* [Minetest Game Documentation](https://wiki.minetest.net/Main_Page)
3838
* [Mesecons Documentation](http://mesecons.net/items.html)
39-
* [Pipeworks Documentation](https://gitlab.com/VanessaE/pipeworks/-/wikis/home)
39+
* [Pipeworks Documentation](https://github.com/mt-mods/pipeworks/-/wikis/home)
4040
* [Moreores Forum Post](https://forum.minetest.net/viewtopic.php?t=549)
41-
* [Basic materials Repository](https://gitlab.com/VanessaE/basic_materials)
41+
* [Basic materials Repository](https://github.com/mt-mods/basic_materials)
4242
* [mtinfo generated documentation](https://mt-mods.github.io/technic/#/mods/technic/items)
4343

4444
Recipes for constructable items in technic are generally not guessable,
@@ -110,8 +110,8 @@ Dependencies:
110110

111111
* https://github.com/minetest-mods/mesecons
112112
* https://github.com/minetest-mods/moreores
113-
* https://gitlab.com/VanessaE/pipeworks
114-
* https://gitlab.com/VanessaE/basic_materials
113+
* https://github.com/mt-mods/pipeworks
114+
* https://github.com/mt-mods/basic_materials
115115

116116
Recommended optional Dependencies:
117117

generate-mtinfo.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ echo "moreblocks.stairsplus_in_creative_inventory = false" >> ${CONFIG}
88

99
# prepare dependent mods
1010
WORLDMODS_DIR=/tmp/technic_worldmods
11-
git clone --depth=1 https://gitlab.com/VanessaE/basic_materials.git ${WORLDMODS_DIR}/basic_materials
12-
git clone --depth=1 https://gitlab.com/VanessaE/pipeworks.git ${WORLDMODS_DIR}/pipeworks
13-
git clone --depth=1 https://gitlab.com/VanessaE/unifieddyes.git ${WORLDMODS_DIR}/unifieddyes
11+
git clone --depth=1 https://github.com/mt-mods/basic_materials.git ${WORLDMODS_DIR}/basic_materials
12+
git clone --depth=1 https://github.com/mt-mods/pipeworks.git ${WORLDMODS_DIR}/pipeworks
13+
git clone --depth=1 https://github.com/mt-mods/unifieddyes.git ${WORLDMODS_DIR}/unifieddyes
1414
git clone --depth=1 https://github.com/minetest-mods/moreblocks.git ${WORLDMODS_DIR}/moreblocks
1515
git clone --depth 1 https://github.com/minetest-mods/moreores.git ${WORLDMODS_DIR}/moreores
1616
git clone --depth=1 https://github.com/BuckarooBanzay/mtinfo.git ${WORLDMODS_DIR}/mtinfo

integration-test.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ EOF
1313

1414
rm -rf ${WORLDDIR}
1515
mkdir -p ${WORLDMODDIR}
16-
git clone --depth 1 https://gitlab.com/VanessaE/basic_materials.git ${WORLDMODDIR}/basic_materials
17-
git clone --depth 1 https://gitlab.com/VanessaE/pipeworks.git ${WORLDMODDIR}/pipeworks
16+
git clone --depth 1 https://github.com/mt-mods/basic_materials.git ${WORLDMODDIR}/basic_materials
17+
git clone --depth 1 https://github.com/mt-mods/pipeworks.git ${WORLDMODDIR}/pipeworks
1818
git clone --depth 1 https://github.com/minetest-mods/moreores.git ${WORLDMODDIR}/moreores
1919

2020
chmod 777 ${MTDIR} -R

technic_cnc/pipeworks.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ end
4040
-- Pipeworks does not provide API to selectively silence protection messages.
4141
-- This wrapper handles pipeworks cycling buttons without sending unnecessary protection messages.
4242
local function on_receive_fields(pos, meta, fields, sender, update_formspec)
43-
-- https://gitlab.com/VanessaE/pipeworks/-/blob/master/common.lua#L115
43+
-- https://github.com/mt-mods/pipeworks/-/blob/master/common.lua#L115
4444
for field,_ in pairs(fields) do
4545
if pipeworks.string_startswith(field, "fs_helpers_cycling:") then
4646
if pipeworks.may_configure(pos, sender) then

0 commit comments

Comments
 (0)