From f05ac54c3e4b0b9734b59b3920fa2b9dd65d9535 Mon Sep 17 00:00:00 2001 From: palige Date: Sun, 30 Aug 2015 11:49:32 +0200 Subject: [PATCH] Change some textures --- README.md | 2 +- moremesecons_adjustable_blinkyplant/init.lua | 6 +++--- .../textures/moremesecons_blinky_plant_off.png | Bin 0 -> 457 bytes .../textures/moremesecons_blinky_plant_on.png | Bin 0 -> 468 bytes moremesecons_commandblock/init.lua | 7 +++---- .../textures/moremesecons_commandblock_off.png | Bin 0 -> 219 bytes .../textures/moremesecons_commandblock_on.png | Bin 0 -> 224 bytes moremesecons_dual_delayer/init.lua | 2 +- .../moremesecons_dual_delayer_bottom.png | Bin 0 -> 131 bytes moremesecons_playerkiller/init.lua | 2 +- .../textures/moremesecons_playerkiller_side.png | Bin 0 -> 727 bytes .../textures/moremesecons_playerkiller_top.png | Bin 0 -> 1162 bytes moremesecons_switchtorch/init.lua | 14 +++++++------- .../textures/moremesecons_switchtorch_off.png | Bin 0 -> 190 bytes .../moremesecons_switchtorch_off_ceiling.png | Bin 0 -> 186 bytes .../moremesecons_switchtorch_off_side.png | Bin 0 -> 182 bytes .../textures/moremesecons_switchtorch_on.png | Bin 0 -> 182 bytes .../moremesecons_switchtorch_on_ceiling.png | Bin 0 -> 194 bytes .../moremesecons_switchtorch_on_side.png | Bin 0 -> 182 bytes moremesecons_teleporter/init.lua | 2 +- .../textures/moremesecons_teleporter.png | Bin 0 -> 550 bytes moremesecons_temporarygate/init.lua | 12 ++++++++++-- moremesecons_wireless/init.lua | 4 ++-- .../textures/moremesecons_wireless.png | Bin 0 -> 206 bytes 24 files changed, 29 insertions(+), 22 deletions(-) create mode 100644 moremesecons_adjustable_blinkyplant/textures/moremesecons_blinky_plant_off.png create mode 100644 moremesecons_adjustable_blinkyplant/textures/moremesecons_blinky_plant_on.png create mode 100644 moremesecons_commandblock/textures/moremesecons_commandblock_off.png create mode 100644 moremesecons_commandblock/textures/moremesecons_commandblock_on.png create mode 100644 moremesecons_dual_delayer/textures/moremesecons_dual_delayer_bottom.png create mode 100644 moremesecons_playerkiller/textures/moremesecons_playerkiller_side.png create mode 100644 moremesecons_playerkiller/textures/moremesecons_playerkiller_top.png create mode 100644 moremesecons_switchtorch/textures/moremesecons_switchtorch_off.png create mode 100644 moremesecons_switchtorch/textures/moremesecons_switchtorch_off_ceiling.png create mode 100644 moremesecons_switchtorch/textures/moremesecons_switchtorch_off_side.png create mode 100644 moremesecons_switchtorch/textures/moremesecons_switchtorch_on.png create mode 100644 moremesecons_switchtorch/textures/moremesecons_switchtorch_on_ceiling.png create mode 100644 moremesecons_switchtorch/textures/moremesecons_switchtorch_on_side.png create mode 100644 moremesecons_teleporter/textures/moremesecons_teleporter.png create mode 100644 moremesecons_wireless/textures/moremesecons_wireless.png diff --git a/README.md b/README.md index ccb7fa6..e5076db 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ MoreMesecons is a mod for minetest wich add some mesecons items. * `Adjustable Blinky plant` : Like a mesecons blinky plant, but... adjustable. Right-click to change the interval. * `Craftable Command Block` : A command block with just some commands accepted. The admin can change the accepted command (first line of the init.lua), default "say" and "tell". -* `Dual Delayer` : If it receives a mesecons signal, port 1 turns on immediatly and port 2 turns on 0.4 seconds later. At the end of the signal, port 2 turns off immediatly and port 1 turns off 0.4 secondes later. +* `Dual Delayer` : If it receives a mesecons signal, port 1 turns on immediatly and port 2 turns on 0.4 seconds later. At the end of the signal, port 2 turns off immediatly and port 1 turns off 0.4 secondes later. For example, this is useful for double extenders. * `Player Killer` : This block kills the nearest player (with a maximal distance of 8 blocks by default) (if this player isn't its owner) when it receives a mesecons signal. * `Signal Changer` : If it receives a signal on its pin "F", it turns on. If ti receives a signal on its pin "O", it turns off. * `Switch Torch` : It connects just like Mesecons Torch. If it receives a signal, it turns on, and if it receives a second signal, it turns off. diff --git a/moremesecons_adjustable_blinkyplant/init.lua b/moremesecons_adjustable_blinkyplant/init.lua index 65b73e0..491dc4c 100644 --- a/moremesecons_adjustable_blinkyplant/init.lua +++ b/moremesecons_adjustable_blinkyplant/init.lua @@ -24,7 +24,7 @@ end mesecon.register_node("moremesecons_adjustable_blinkyplant:adjustable_blinky_plant", { description="Adjustable Blinky Plant", drawtype = "plantlike", - inventory_image = "jeija_blinky_plant_off.png", + inventory_image = "moremesecons_blinky_plant_off.png", paramtype = "light", walkable = false, sounds = default.node_sound_leaves_defaults(), @@ -44,11 +44,11 @@ mesecon.register_node("moremesecons_adjustable_blinkyplant:adjustable_blinky_pla toggle_timer(pos, true) end, },{ - tiles = {"jeija_blinky_plant_off.png"}, + tiles = {"moremesecons_blinky_plant_off.png"}, groups = {dig_immediate=3}, mesecons = {receptor = { state = mesecon.state.off }} },{ - tiles = {"jeija_blinky_plant_on.png"}, + tiles = {"moremesecons_blinky_plant_on.png"}, groups = {dig_immediate=3, not_in_creative_inventory=1}, mesecons = {receptor = { state = mesecon.state.on }}, }) diff --git a/moremesecons_adjustable_blinkyplant/textures/moremesecons_blinky_plant_off.png b/moremesecons_adjustable_blinkyplant/textures/moremesecons_blinky_plant_off.png new file mode 100644 index 0000000000000000000000000000000000000000..d4cad1e93225fa99ae150fb865a1374c2fafcf2f GIT binary patch literal 457 zcmV;)0XF`LP)&Or3M48Bp(!YA$)L@lA%cPk!bz|pY=}&xmKI%I zENlpxiYCE+h#+W5Y7+ZVdzJVy{cb}bmEjgNbhdjr=W^~jz(4*tq6knF0cylyjl`el zDJ=fT6@K*vzrBrOuA!O}@8%fIu8n+gCVdxq{7zELCPaJ(tZQZUW4X7Fxv-10M-36* zA!~SmR|#dkjLD@z+CASuCY=WW%~^im>x$|k)1BuWA# zSw!|Shn7w&ikc2ZHK1A{#DghT7h=z_oziEwaL@PAR_K@+OfonpC>A503neJ35xmL~ z52o0FyMunL(KYR$>~#TxD5AaF2BRXQnAbr90LE~0aSsBA+N^*$A-QwK>bf1BaZvS@ z<010|TdM_qYDQxHq^5fZu;G5vO@Zw*00000NkvXXu0mjfK^?iE literal 0 HcmV?d00001 diff --git a/moremesecons_adjustable_blinkyplant/textures/moremesecons_blinky_plant_on.png b/moremesecons_adjustable_blinkyplant/textures/moremesecons_blinky_plant_on.png new file mode 100644 index 0000000000000000000000000000000000000000..f6eccf9a62942302c03cf1ee6a685c69167bab11 GIT binary patch literal 468 zcmV;_0W1EAP)yJzJ#Yy(X>BnZS z$VBfILx|Z3qHJIO?uD#(mI~gPW_lv(rRd=T88$c$%#poK!u)!SrJW-X1v7v%oE|Mv zv8=$edBO|<3a^8!Kx}`JZt_WFGDQGDu~fmbKhAb`C+VYBN9f>+0YD3Fb;C{J&@~He zO_9xPfhshRe#pT+G=P#)MZ*fbX(}SYWYZ^n9m8XNluBo?vgRiL-UX|Ob!eQU({4lV zwT!A&N4Zf$B$#BQ)BVjIS{jUdT=blkA(=!BI(r~VB5Gw7nn0*?9rt%n;NWm{NFYu~ zB_0|3zQKgoMGcjskXO*%>wrZxq4ZLPuIaG1TjA)k;XHiX^nC*Ub(lq!!L@b(0000< KMNUMnLSTaE)y570 literal 0 HcmV?d00001 diff --git a/moremesecons_commandblock/init.lua b/moremesecons_commandblock/init.lua index 68b571d..de1fe1b 100644 --- a/moremesecons_commandblock/init.lua +++ b/moremesecons_commandblock/init.lua @@ -136,8 +136,7 @@ end minetest.register_node("moremesecons_commandblock:commandblock_off", { description = "Craftable Command Block", - tiles = {"jeija_commandblock_off.png"}, - inventory_image = minetest.inventorycube("jeija_commandblock_off.png"), + tiles = {"moremesecons_commandblock_off.png"}, groups = {cracky=2, mesecon_effector_off=1}, on_construct = construct, after_place_node = after_place, @@ -150,7 +149,7 @@ minetest.register_node("moremesecons_commandblock:commandblock_off", { }) minetest.register_node("moremesecons_commandblock:commandblock_on", { - tiles = {"jeija_commandblock_on.png"}, + tiles = {"moremesecons_commandblock_on.png"}, groups = {cracky=2, mesecon_effector_on=1, not_in_creative_inventory=1}, light_source = 10, drop = "moremesecons_commandblock:commandblock_off", @@ -165,7 +164,7 @@ minetest.register_node("moremesecons_commandblock:commandblock_on", { }) minetest.register_craft({ - output = "moremoremesecons_commandblock:commandblock_off", + output = "moremesecons_commandblock:commandblock_off", recipe = { {"group:mesecon_conductor_craftable","default:mese_crystal","group:mesecon_conductor_craftable"}, {"default:mese_crystal","group:mesecon_conductor_craftable","default:mese_crystal"}, diff --git a/moremesecons_commandblock/textures/moremesecons_commandblock_off.png b/moremesecons_commandblock/textures/moremesecons_commandblock_off.png new file mode 100644 index 0000000000000000000000000000000000000000..00193d2495fc23d7794edd8d872a1e68c2a093fb GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|oCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#K8GBqpuoGW>1TjKRh}-6AsXkCWA>Rk0rBf|+C z5f9ds#zhxsK6?DPI5M$)U1MY8!v~FjBTQS|T@p7k@--hrSWaHhL@HWFDKnTXtXVfA2kP49yZU)}H$t*8p9? N;OXk;vd$@?2>|I!PelL# literal 0 HcmV?d00001 diff --git a/moremesecons_commandblock/textures/moremesecons_commandblock_on.png b/moremesecons_commandblock/textures/moremesecons_commandblock_on.png new file mode 100644 index 0000000000000000000000000000000000000000..a61cd55697b450419785b9ebef4fcdca140c6d13 GIT binary patch literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|oCO|{#S9GG!XV7ZFl&wkP>{XE z)7O>#K8GBqppo@eH4UIpy{C&~h{pNkJNu5$YRp*hW&YIG#zw{Or@fU-*Q8BKNm3Bp za3C_)N4P-q(c{Obe@tju*Vx#2@FLspw%6r5B<&0mE;2AqkC#4tbJwEuLMu+mgjLPV zlWcvfd2jq>_--CJ@7UvH5#E}bn(OZiCO=rx!|(aw#==$0r~cc#E^U%Z95X}JKB@cm T*KE!MoxgTe~DWM4f$1_q^ literal 0 HcmV?d00001 diff --git a/moremesecons_dual_delayer/init.lua b/moremesecons_dual_delayer/init.lua index f24f1f3..46f3a99 100644 --- a/moremesecons_dual_delayer/init.lua +++ b/moremesecons_dual_delayer/init.lua @@ -78,5 +78,5 @@ end minetest.register_craft({ type = "shapeless", output = "moremesecons_dual_delayer:dual_delayer_00 2", - recipe = {"mesecons_delayer:delayer_off", "mesecons_delayer:delayer_off"} + recipe = {"mesecons_delayer:delayer_off_1", "mesecons_delayer:delayer_off_1"} }) diff --git a/moremesecons_dual_delayer/textures/moremesecons_dual_delayer_bottom.png b/moremesecons_dual_delayer/textures/moremesecons_dual_delayer_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..46b4affc093c2810c953417d0c162fa5f0fe4680 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vfc)I$ztaD0e0sxReCawSg literal 0 HcmV?d00001 diff --git a/moremesecons_playerkiller/init.lua b/moremesecons_playerkiller/init.lua index a05455b..6be67b8 100644 --- a/moremesecons_playerkiller/init.lua +++ b/moremesecons_playerkiller/init.lua @@ -30,7 +30,7 @@ minetest.register_craft({ {"","default:apple",""}} }) minetest.register_node("moremesecons_playerkiller:playerkiller", { - tiles = {"top.png", "top.png", "side.png", "side.png", "side.png", "side.png"}, + tiles = {"moremesecons_playerkiller_top.png", "moremesecons_playerkiller_top.png", "moremesecons_playerkiller_side.png", "moremesecons_playerkiller_side.png", "moremesecons_playerkiller_side.png", "moremesecons_playerkiller_side.png"}, paramtype = "light", walkable = true, groups = {cracky=3}, diff --git a/moremesecons_playerkiller/textures/moremesecons_playerkiller_side.png b/moremesecons_playerkiller/textures/moremesecons_playerkiller_side.png new file mode 100644 index 0000000000000000000000000000000000000000..a1e57e07eb4e452487f27e85200657da7e2dd321 GIT binary patch literal 727 zcmV;|0x127P)WFU8GbZ8()Nlj2>E@cM*00KKnL_t(|+U;7)vBMw? zR6Oa4cDTACuCzl{@12-Y2w))kU;~%Ljz`ums}GPD0Q|wiRrPlHZ-+Oa#oJg16R-XUQKs1om1$NbWuHE*Tzg z$(WBMq1Ew@_} zkkIj)c;497N!Q5mo}O0M)KJRUk@0Phyh_ z0dWFKpjz)ef`HbtCXxIw0itUGjoF@VF_bDnYac*uF%)MVAGB!h5gZ!e@yw63%eN$; zRO5TwDmYF4N31E{+`?>&SNz!=jV%14Xw zQFf)`IfMWJ03iejA$0kBv>5L-dZ*Ex17;)v&wd=n7@82s8UH2OaDz9-bc3%ZL2E4- zV?JIIzmFsvZt$bNRI5NFAteA4Ax#1$_@*+5jpr00sRnBB-HlLGM5+pj1jzw@s1b@U zt*L=h5s_F9@IQ5eI6tJhfyzmWGRN8qV>P4%L`94`D*>KtF_d#kqe7^z2Gf#BWiQ&~ zB9wGBh)JMu7Ka#@n#h;K9FB5^(*BRoCSdXLu`9e4unAai`~#-Ay0Y%y%ZC5}002ov JPDHLkV1l6NF2n!; literal 0 HcmV?d00001 diff --git a/moremesecons_playerkiller/textures/moremesecons_playerkiller_top.png b/moremesecons_playerkiller/textures/moremesecons_playerkiller_top.png new file mode 100644 index 0000000000000000000000000000000000000000..bc22e2509edb788109d9547dc732a90ea15c91dc GIT binary patch literal 1162 zcmV;51a00009a7bBm000XU z000XU0RWnu7ytkO2XskIMF-yn2oN?c@(s{*5$GTZY-sTV0%VeN?zOM)IYiBw&zM=PLUBK%rgpdwKFo~SH@-dc7!ceM z0gr#>^*i5<#Xj=5WO+V;QF2vNcdyob`NvUF)zm-uVH7GL2nY=3jxr#y6-smGV<1a21us8jQgR%7CDz_IP0u5-wSe zMZ*ja{0ARv)(!NKP@~&xQr?T|sHpbrSF9}dndcd^fgA??xT1RFZN(}h3kYIjgAtu^ z;$}J|Oh^I($;KOR71iI#fXBb{zGj`1M?|0C?$VGH<>YJDz*oNZ&Vw1aaxO*Ry0HO- zgGTpWOFelz+z|8)hlofxINa?r;PE?l4rj5a(0hE_Vo<1~0X7(Mcy{di6(!Rz{8H>s z*qzGax-eH&hjsp#R0MjI7xM z4p&e#A5+qUwIoR>DLwwWRmkJ_>}%>SdXFzCa`G+PHu@$x8QGR?PVR7Bpc*YL;H4b& zrQ3JIrljodT`49xc{|wWPf)0ma>M4*dU_cFS>>mSPeJj*i>&*jqokAxT>{N2I^W;@ zFD0cy8B8O!4n{~gXC4xMa`eiCZURM4bPLqT1T1#RQjX6qH;avkj^g{{ghse^tMixy zG&&|$sH0^hB#ej_EE19fhzgaEELcQDM@z8BD^yH;^@B{K4MqgO!Oa4KghZ0lKFFkx zSg@Ee6ESdf{Uju}=!HVUC!SWUDyoC~$qq?L6)Ge=vz3q&P~`F_`)AAyh@3r|1c5HE z1%)(cpEq+&_*2pwb)y#BBtfCN5fwRau_>vrI@M0M!++`a?N6Ycgyzq-?woTjRZibexnPK;5Et)b4G^5vf2RCP}yw=oWEeiCQ z_#d(srAo%cQZyTLx1^NDTU3M;)`a9=Gi_@% literal 0 HcmV?d00001 diff --git a/moremesecons_switchtorch/init.lua b/moremesecons_switchtorch/init.lua index 7c4c33a..73e7bcb 100644 --- a/moremesecons_switchtorch/init.lua +++ b/moremesecons_switchtorch/init.lua @@ -36,7 +36,7 @@ local torch_get_input_rules = function(node) end minetest.register_craft({ - output = "moremesecons_switchtorch:switchtorch_off 4", + output = "moremesecons_switchtorch:switchtorch_on 4", recipe = { {"default:stick"}, {"group:mesecon_conductor_craftable"},} @@ -52,8 +52,8 @@ local torch_selectionbox = minetest.register_node("moremesecons_switchtorch:switchtorch_off", { drawtype = "torchlike", - tiles = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"}, - inventory_image = "jeija_torches_off.png", + tiles = {"moremesecons_switchtorch_off.png", "moremesecons_switchtorch_off_ceiling.png", "moremesecons_switchtorch_off_side.png"}, + inventory_image = "moremesecons_switchtorch_off.png", paramtype = "light", walkable = false, paramtype2 = "wallmounted", @@ -72,11 +72,11 @@ minetest.register_node("moremesecons_switchtorch:switchtorch_off", { }) minetest.register_node("moremesecons_switchtorch:switchtorch_on", { - descrption = "Switch Torch", + description = "Switch Torch", drawtype = "torchlike", - tiles = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"}, - inventory_image = "jeija_torches_on.png", - wield_image = "jeija_torches_on.png", + tiles = {"moremesecons_switchtorch_on.png", "moremesecons_switchtorch_on_ceiling.png", "moremesecons_switchtorch_on_side.png"}, + inventory_image = "moremesecons_switchtorch_on.png", + wield_image = "moremesecons_switchtorch_on.png", paramtype = "light", sunlight_propagates = true, walkable = false, diff --git a/moremesecons_switchtorch/textures/moremesecons_switchtorch_off.png b/moremesecons_switchtorch/textures/moremesecons_switchtorch_off.png new file mode 100644 index 0000000000000000000000000000000000000000..6aacca63085005d0c06a21381a01c06eff1722fd GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^f5PAba4!^IGvmz!RjoLu{`3B z`jWPZ5zOn(SvCgi3Y*4wUl8Eb6FimM`K|Pif8_zMg1^geSnsdTA;BEp00i_>zopr05IG=(EtDd literal 0 HcmV?d00001 diff --git a/moremesecons_switchtorch/textures/moremesecons_switchtorch_off_ceiling.png b/moremesecons_switchtorch/textures/moremesecons_switchtorch_off_ceiling.png new file mode 100644 index 0000000000000000000000000000000000000000..ae3e1287074ce7d510d19f336764166692ed6c04 GIT binary patch literal 186 zcmeAS@N?(olHy`uVBq!ia0vp^fOH5yWN5DDQxT)>I*NtUetTt)u&RHI`*pTQX+VEy+ dpn(V@L*xebP1lwtWC4w2@O1TaS?83{1ORR5I2Hf^ literal 0 HcmV?d00001 diff --git a/moremesecons_switchtorch/textures/moremesecons_switchtorch_off_side.png b/moremesecons_switchtorch/textures/moremesecons_switchtorch_off_side.png new file mode 100644 index 0000000000000000000000000000000000000000..9a4fe2ad5e3ea0a98601e1630abab865f3526b79 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^0zfRt!3HF+tk*dLq}Y|gW!U_%O?XxI14-? ziy0WWg&7!l{1~|otZV@avX^-Jy0YKrkmF?FHs|a$017#Kx;TbdoK8-VU_H!W@M!WC zzl}fmljG+WH%(Mwo?vQhU|=Az=Sj+rf>$hu*Uz_?koae8@aO0810P<0uRj%Qz}3de Zz_6=TOl?ZO%0-}Y44$rjF6*2UngG$6I1vB< literal 0 HcmV?d00001 diff --git a/moremesecons_switchtorch/textures/moremesecons_switchtorch_on.png b/moremesecons_switchtorch/textures/moremesecons_switchtorch_on.png new file mode 100644 index 0000000000000000000000000000000000000000..002e33f166af9f9ad9b057a3a9c7f85da7212ca4 GIT binary patch literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^fgTe~DWM4f(492C literal 0 HcmV?d00001 diff --git a/moremesecons_switchtorch/textures/moremesecons_switchtorch_on_ceiling.png b/moremesecons_switchtorch/textures/moremesecons_switchtorch_on_ceiling.png new file mode 100644 index 0000000000000000000000000000000000000000..fbeb97edbbc3767196aa12ed0193d4be53a8bea6 GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^f88B!Q5H2Uf|fFhg) z9+AZi4BWyD3_N~}TnARR00r4gJbhi+?{mm;GAXQV7W)Jga`tp_46!(!oFKt^n8D!D zq)Cnp|7@5ojEPr>mdKI;Vst0Hv8X+5i9m literal 0 HcmV?d00001 diff --git a/moremesecons_teleporter/init.lua b/moremesecons_teleporter/init.lua index 0ada2ff..2dbfea9 100644 --- a/moremesecons_teleporter/init.lua +++ b/moremesecons_teleporter/init.lua @@ -51,7 +51,7 @@ minetest.register_craft({ recipe = {{"default:diamond","default:stick","default:mese"}} }) minetest.register_node("moremesecons_teleporter:teleporter", { - tiles = {"teleporter.png"}, + tiles = {"moremesecons_teleporter.png"}, paramtype = "light", walkable = true, groups = {cracky=3}, diff --git a/moremesecons_teleporter/textures/moremesecons_teleporter.png b/moremesecons_teleporter/textures/moremesecons_teleporter.png new file mode 100644 index 0000000000000000000000000000000000000000..f038093a363259979b552d2b9cf983149b505350 GIT binary patch literal 550 zcmV+>0@?kEP)e zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00E9kL_t(2&t;NJavL!WL>mAp zaHvsMK1}X^8!udP>B|`sKo%oQN`fV;8}-;|`u+Kdp9wR#1Bl+Y7s{D(#@nQqy7%ZE z5#j!>h~D3A>0KRWe!qvAuPXq~nN`8eK=jVFJ`7K_T`u05x3(dLs`t)017Ouy7E(=N z_EO(&<8<=YVp#wnC8mC6duw4P(-emT05FpXRAX5Z zfN=L^@z(5m?O$L0c=XE!fX#C@BUM(7QoMHtQuH2UguAyEt@*mz`8>YAL6pq66uDl# zR$o`1roUo+o+8G;7~vkJ#2Ehw9tL8jlpw;poy;@F2!LyqQXm3mA_6mjL^*SWi*PA& zIQaDnGggHe@Ao{V{4!v8wF%Tq~=R2<4mraIJp3Z5|TwQnqSHDO?JeS#?|g`t;L78{SVik1Z)Z o`}c~KYxUM>w<7>g!v7ln2T5r6KFFZZ*Z=?k07*qoM6N<$g2RaAMF0Q* literal 0 HcmV?d00001 diff --git a/moremesecons_temporarygate/init.lua b/moremesecons_temporarygate/init.lua index 32bf11a..267fa42 100644 --- a/moremesecons_temporarygate/init.lua +++ b/moremesecons_temporarygate/init.lua @@ -103,13 +103,21 @@ mesecon.register_node("moremesecons_temporarygate:temporarygate", { "moremesecons_temporarygate_sides_on.png" }, groups = {bendy=2,snappy=1,dig_immediate=2, not_in_creative_inventory=1}, - mesecons = {receptor = {state = mesecon.state.on, rules = temporarygate_get_output_rules}}, + mesecons = { + receptor = { + state = mesecon.state.on, + rules = temporarygate_get_output_rules + }, + effector = { + rules = temporarygate_get_input_rules, + } + }, }) minetest.register_craft({ output = "moremesecons_temporarygate:temporarygate_off 2", recipe = { - {"group:mesecon_conductor_craftable", "mesecons_delayer:delayer_off", "group:mesecon_conductor_craftable"}, + {"group:mesecon_conductor_craftable", "mesecons_delayer:delayer_off_1", "group:mesecon_conductor_craftable"}, {"default:wood","default:wood", "default:wood"}, } }) diff --git a/moremesecons_wireless/init.lua b/moremesecons_wireless/init.lua index 0e791ad..f36cc7e 100644 --- a/moremesecons_wireless/init.lua +++ b/moremesecons_wireless/init.lua @@ -40,7 +40,7 @@ local wireless_deactivate = function(pos) end minetest.register_node("moremesecons_wireless:wireless", { - tiles = {"wireless.png"}, + tiles = {"moremesecons_wireless.png"}, paramtype = "light", paramtype2 = "facedir", description = "Wireless", @@ -66,7 +66,7 @@ minetest.register_craft({ output = "moremesecons_wireless:wireless 2", recipe = { {"group:mesecon_conductor_craftable", "", "group:mesecon_conductor_craftable"}, - {"", "mesecons_torch:torch_on", ""}, + {"", "mesecons_torch:mesecon_torch_on", ""}, {"group:mesecon_conductor_craftable", "", "group:mesecon_conductor_craftable"}, } }) diff --git a/moremesecons_wireless/textures/moremesecons_wireless.png b/moremesecons_wireless/textures/moremesecons_wireless.png new file mode 100644 index 0000000000000000000000000000000000000000..e16d40cff54c1e2d88bfb2257248d6d44be5ec5f GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP~E4P5S+V8LH41hwCC9V-A&iT2ysd*&~&PAz-C8;S2 z<(VZJ3hti10pX2&;y^`ao-U3d8t0P}6a)>73=CpU{qtXvwRdHY&yrgP9Htu*xL*2+ sw{6x>-zPh%?m)?Rh40KKr99XeqMA88*%|UhfF>|_y85}Sb4q9e0Ie-LSO5S3 literal 0 HcmV?d00001