Commit Graph

8075 Commits

Author SHA1 Message Date
kay27 da3034cadd #310 Make tridents do not say 261 2022-05-09 05:55:20 +03:00
kay27 0d8c9c8577 Merge master into testing 2022-05-09 05:39:23 +03:00
kay27 0ed8976aae Remove continuous warnings 2022-05-09 05:38:52 +03:00
AFCMS 48c8eaa6ed Remove 2D preview by AFCMS 2022-05-06 12:53:30 -05:00
AFCMS a4655a0c23 Fix player armor enchanting overlay (#2161) 2022-05-06 08:37:15 -05:00
AFCMS 4af046500d Remove preview files 2022-05-06 08:35:37 -05:00
kay27 13dc68f40f Merge pull request 'Use baby_size to scale chick size on hatching instead of dividing by 2' (#305) from balazsszalab/MineClone5:master into master
Reviewed-on: MineClone5/MineClone5#305
2022-05-05 23:06:29 +00:00
balazsszalab 6ef292e80e Use baby_size to scale chick size on hatching instead of dividing by 2 2022-05-03 21:13:52 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 00e54944fa Fix mcl_maps on Windows 2022-05-03 09:48:50 -05:00
3raven d17a50ecba Remove possibility to get soul fire in inventory by digging+minor fixes 2022-05-02 20:38:02 +00:00
3raven 49acbfed8e Fix from mcl2 blackstone by cora
Changes taken from 
af5e3d84d4

Fire is briefly yellow upon ignition before becoming blue
2022-04-30 22:08:08 +00:00
kay27 69bc5dbb16 Fix UNIQUE constraint failed: auth.name in callback createAuth() 2022-04-29 02:43:25 +03:00
kay27 76efcd4906 Merge testing into master (1.10) 2022-04-25 01:55:18 +03:00
3raven ab22628afe Merge pull request 'master' (#300) from 3raven/MineClone5:master into master
Reviewed-on: MineClone5/MineClone5#300

-Add Stripped and bark nether hyphae+hyphae stairs
-Make nether woods and nether wood doors non-flammable
-Put wooden door registration into a loop (like trapdoors)
2022-04-24 17:01:25 +00:00
3raven 010ffd695f Update translation template - TODO complete translation 2022-04-24 16:49:20 +00:00
3raven 6ffa01cac6 Update translation list - TO-DO: complete translations 2022-04-24 16:17:18 +00:00
3raven 2f0351fe6d Correct name 2022-04-24 16:16:33 +00:00
kay27 b70ae30fda Create MCL5 own mcl_end_crystal_beam texture 2022-04-23 22:02:23 +03:00
kay27 d0a8848487 Merge master into testing 2022-04-23 21:19:09 +03:00
kay27 cd02080ca8 Merge master into testing 2022-04-23 20:15:43 +03:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 b80e511cae Fix tools backwards in wieldview 2022-04-23 11:52:32 -05:00
River River 663c2bedbb Fix boat initialization failure 2022-04-23 23:20:38 +09:00
kay27 3a7363f11d Decrease spam activity reset interval from 300 to 30 s 2022-04-22 23:14:39 +03:00
Nils Dagsson Moskopp 033573ad63 Shuffle pixels in mcl_end_crystal_beam.png
A user claimed that this texture was a texture from Minecraft 1.8.9 –
see <MineClone2/MineClone2#2099> for
further details. I have not verified that but I noticed that in commit
152e55245804bd2b4790ee31454986948237d2a8 the file was replaced with a
file containing the exact same pixels.

A visual inspection confirms that the file contains noise, so it is not
clear if it is even copyrightable. However, to ensure that it could not
be identical to a file from Minecraft, To get noise of the same quality,
I have shuffled all its pixels with the following POSIX sh shell script:

LANG=C
PREFIX=mcl_end_crystal_beam
convert $PREFIX.png $PREFIX.pnm
<$PREFIX.pnm  >$PREFIX.plainpnm pnmtoplainpnm
<$PREFIX.plainpnm >$PREFIX.seed tr '1234567890 ' ' 1356902468'
(
 <$PREFIX.plainpnm head -n+3
 <$PREFIX.plainpnm tail -n+4 \
  |tr ' ' '\n' \
  |shuf --random-source $PREFIX.seed
) >$PREFIX.shuffled.plainpnm

I then opened mcl_end_crystal_beam.shuffled.plainpnm using GIMP,
converted the color black to tranparency and saved the image as a
paletted PNG (which yields a smaller filesize than a grayscale PNG).
2022-04-22 23:00:47 +03:00
kay27 c5e84a2704 Merge master into testing 2022-04-22 22:48:47 +03:00
kay27 f204470052 Merge pull request 'Lava produce sparks' (#292) from MrRar/MineClone5:lava into master
Reviewed-on: MineClone5/MineClone5#292
2022-04-22 19:47:17 +00:00
kay27 721e721427 Merge pull request 'Remove image stack wieldview' (#295) from MrRar/MineClone5:wieldview into master
Reviewed-on: MineClone5/MineClone5#295
2022-04-22 19:45:32 +00:00
CableGuy67 5432c6bd92 /spawnstruct placed schematics one block lower than player is standing
Because the position of the player is -0.5 from the block (when not flying) /spawnstruct would place the schematic a block lower than the player's feet.
2022-04-22 13:51:17 +00:00
3raven a8be87f88d Rangement 2022-04-20 22:57:27 +00:00
3raven 84320db3b7 Rangement 2022-04-20 22:50:40 +00:00
3raven 85a6f216f0 fix 2022-04-20 22:32:07 +00:00
3raven 01737dd551 Add Bark stairs and slab 2022-04-20 22:15:01 +00:00
3raven fec258cb99 Wrong recipe 2022-04-20 22:05:57 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 c5ad0d5f33 Remove image stack wieldview 2022-04-20 16:56:17 -05:00
3raven 9367c74e71 Add bark stairs and slab 2022-04-20 05:06:07 +00:00
3raven 3dcb969d75 fix 2022-04-20 04:32:13 +00:00
3raven ed29cd687b fix 2022-04-20 04:07:22 +00:00
3raven f57135259c fix 2022-04-20 03:42:54 +00:00
3raven c3ef5e93af Put door registration into a loop to have less lines of code 2022-04-20 03:37:28 +00:00
3raven df8dab3fac Makes nether wood fences unflammable 2022-04-20 01:47:39 +00:00
3raven 04c62e475e makes nether wood trapdoors unflammable 2022-04-20 01:42:50 +00:00
3raven 44c2c26265 make nether woods doors unflammable 2022-04-20 01:35:48 +00:00
3raven 4850b914a4 Non flammable/modify by similiraty with trees 2022-04-20 00:29:44 +00:00
3raven 1d331313d7 Same for crimson hyphae 2022-04-19 23:25:21 +00:00
3raven 9010305df4 Add stripped warped stuff 2022-04-19 22:55:48 +00:00
3raven 0200e25781 Add warped hyphae stripped and bark 2022-04-19 22:35:18 +00:00
3raven 8153487290 Add texture files for stripped stem
Add texture files for stripped stem
2022-04-19 21:11:01 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 b6a4c1a995 Lava sparks: performance improvement 2022-04-19 08:01:56 -05:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 f0b8e8ea11 Lava produce sparks 2022-04-15 13:56:49 -05:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 d0fcab11e9 Merge pull request 'Armor wearing mobs' (#285) from MrRar/MineClone5:zarmor into master
Reviewed-on: MineClone5/MineClone5#285
2022-04-13 18:41:51 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 b7f3b8edd5 No sun damage wearing helment 2022-04-13 12:52:39 -05:00
3raven 9b04b285b7 Make the shield drop at death 2022-04-12 22:08:33 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 1d315c569f Bonus: Mobs Redo bug fix 2022-04-10 14:05:15 -05:00
3raven c6f09e30a5 Mise à jour de 'mods/ITEMS/mcl_lanterns/register.lua' 2022-04-09 19:49:59 +00:00
3raven a47e0d2f17 Mise à jour de 'mods/ITEMS/mcl_lanterns/init.lua' 2022-04-09 19:49:23 +00:00
3raven a1ca0c3431 Mise à jour de 'mods/ITEMS/mcl_lanterns/register.lua' 2022-04-09 19:31:56 +00:00
3raven c72c960e8a Mise à jour de 'mods/ITEMS/mcl_lanterns/init.lua' 2022-04-09 19:29:52 +00:00
3raven 0184925890 Mise à jour de 'mods/ITEMS/mcl_lanterns/local/mcl_lanterns.fr.tr' 2022-04-09 19:26:04 +00:00
3raven 44d32b5d17 fix 2022-04-09 12:12:07 +00:00
3raven 07d564b5a2 Mise à jour de 'mods/ITEMS/mcl_beds/init.lua' 2022-04-09 12:05:00 +00:00
3raven 1e431814bc Mise à jour de 'mods/ITEMS/mcl_lanterns/init.lua' 2022-04-09 11:48:43 +00:00
3raven 337b4e1d05 Mise à jour de 'mods/ITEMS/mcl_lanterns/register.lua' 2022-04-09 11:47:14 +00:00
3raven f052e26e0c fix 2022-04-09 11:43:47 +00:00
3raven c55aab9360 Update french translation 2022-04-09 10:31:13 +00:00
3raven 421c1e8d00 Ajouter 'mods/MAPGEN/mcl_villages/locale/mcl_villages.fr.tr' 2022-04-09 10:21:26 +00:00
3raven 3591ef1fae French translation 2022-04-09 09:59:27 +00:00
3raven 47ed81490a french translation 2022-04-09 09:52:46 +00:00
3raven 609653eaf2 Update french translation 2022-04-09 09:44:49 +00:00
3raven f828ee6a19 Mise à jour de 'mods/HUD/mcl_achievements/locale/template.txt' 2022-04-09 09:28:36 +00:00
3raven e14545a2b8 French translation 2022-04-09 08:51:53 +00:00
3raven c3111c99b2 French translation 2022-04-09 08:49:47 +00:00
3raven 140fd67686 Add french translation 2022-04-09 08:07:47 +00:00
3raven 700200958d wrong place 2022-04-09 08:03:37 +00:00
3raven 8cd3b63fae Add Translations 2022-04-09 08:02:22 +00:00
3raven 4c957a3e7c Add Translation 2022-04-09 08:01:16 +00:00
3raven 2b87fb2cd2 Update french translation 2022-04-09 07:51:40 +00:00
3raven cbfac60742 Mise à jour de 'mods/ITEMS/mcl_furnaces/locale/template.txt' 2022-04-09 07:45:41 +00:00
3raven f46d093038 remove doublon 2022-04-09 07:44:09 +00:00
3raven cc300971b3 Update 2022-04-09 07:42:19 +00:00
3raven 9dd85f9f7b Update french translation 2022-04-09 07:12:24 +00:00
3raven 7f34c979ff update 2022-04-09 06:49:31 +00:00
3raven 6afda0af92 Update french translation 2022-04-09 06:42:51 +00:00
3raven f60588cf25 Update
Please when you add stuff update the template.txt and not just one translation file
2022-04-09 06:38:04 +00:00
3raven fd94fba22c Update french translation 2022-04-09 06:15:06 +00:00
3raven 99c4fbfc38 Update 2022-04-09 06:13:17 +00:00
3raven e4865338fc Update translation 2022-04-09 06:12:07 +00:00
3raven c1a7d3e504 Update 2022-04-09 06:07:35 +00:00
3raven b7c521bedc Update french translation 2022-04-09 05:37:39 +00:00
3raven 8f64a1e18c Update translation 2022-04-09 05:35:54 +00:00
3raven e017d4a724 Add translation 2022-04-09 05:33:22 +00:00
3raven 69fc0228d6 Update french translation 2022-04-09 05:00:07 +00:00
3raven c0e83aa0cd Update template.txt 2022-04-09 04:41:09 +00:00
3raven 5429a259ff Update french translation 2022-04-09 04:24:09 +00:00
3raven 3e8e74b633 Update template 2022-04-09 04:21:16 +00:00
3raven a2933ece62 Add french translation 2022-04-09 04:12:11 +00:00
3raven 820ceceffc Add target 2022-04-09 03:55:23 +00:00
3raven 11a9f6baea Add target 2022-04-09 03:54:13 +00:00
3raven 5d214ae4bf Add target 2022-04-09 03:53:12 +00:00
3raven 13e92cd5b3 Add target from mcl 2 2022-04-09 03:51:46 +00:00
3raven 5fa14070d3 Add target from mcl2 2022-04-09 03:50:37 +00:00
3raven 3129379fe9 Add steel and black stone pressure plate
light and heavy weighted pressure plate don't work the same as in minecraft. They dont give signal proportional to entities number.
Modified heavey weighted pressure plate so it detect all entities as in minecraft wiki.
2022-04-09 03:21:38 +00:00
3raven 45c3889316 Add nether wood pressure plate 2022-04-09 02:58:14 +00:00
3raven b0392bbeb9 Add blackstone button 2022-04-09 02:39:52 +00:00
3raven 7db8d3cd5f Add nether wood buttons 2022-04-09 02:28:43 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 86328c0822 WIP Zombies and Husks wear armor 2022-04-08 16:13:07 -05:00
3raven 5f2ea5b073 Mise à jour de 'mods/ITEMS/mcl_nether/README.txt' 2022-04-08 20:45:03 +00:00
3raven 8e98239a57 README
Add license info
2022-04-08 20:40:45 +00:00
3raven 521b890612 Replace proprietary texture
Replace by the texture from PixelPerfection Legacy by XSSheep (CC-BY-SA)
2022-04-08 20:28:59 +00:00
kabou ed963428c0 Replace mcl_end_crystal_beam.png with free version.
* Replace mcl_end_crystal_beam.png with unknown provenance with a
  version from the PixelPerfection texture pack that has a know good
  free licence.
2022-04-07 22:54:00 +03:00
kay27 f5ab76592c Merge pull request 'Lightning command: Strike player by name' (#274) from MrRar/MineClone5:master into master
Reviewed-on: MineClone5/MineClone5#274
2022-04-04 13:56:13 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 d424aaa5bc Lightning mod: fix localization template 2022-04-04 07:48:05 -05:00
kay27 9e6f1c78e6 #151 Bump ABM intervals to 1 second 2022-04-04 04:02:10 +03:00
kay27 be58b54104 #278 Rename default_dbg to default_debug 2022-04-04 03:49:14 +03:00
kay27 b4bc3e70b3 Merge master into testing 2022-04-04 03:46:54 +03:00
kay27 05fdda96ad Merge pull request 'Adds new advancements and minor detail changes' (#275) from PrairieAstronomer/MineClone5:pw_achievements into master
Reviewed-on: MineClone5/MineClone5#275
2022-04-04 00:34:10 +00:00
PrairieWind 4444437f94 Update 'mods/ITEMS/mcl_beds/respawn_anchor.lua' 2022-04-02 12:28:16 +00:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 b99fbe8f69 Fix mobs staying red after explosion 2022-04-01 08:15:55 -05:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 ddaa96589e Make params description sensable 2022-04-01 07:58:26 -05:00
PrairieAstronomer 2ea868ba79 fixed formating of respawn_ancher.lua file 2022-03-29 13:37:45 -06:00
PrairieAstronomer c9470b8262 adds new advancements and minor detail changes 2022-03-29 12:49:39 -06:00
𝕵𝖔𝖍𝖆𝖓𝖓𝖊𝖘 𝕱𝖗𝖎𝖙𝖟 1273d59995 Lightning command: Strike player by name 2022-03-29 12:16:06 -05:00
debiankaios 0dfe211053 Merge pull request 'Added Lodestones (New clean PR)' (#270) from chmodsayshello/MineClone5:Lodestone_New_PR into master
Reviewed-on: MineClone5/MineClone5#270 (two times)
2022-03-28 19:15:43 +00:00
chmodsayshello d467060897 upload textures 2022-03-28 16:08:08 +00:00
chmodsayshello dc93dd87e2 upload textures 1/2 2022-03-28 16:07:51 +00:00
chmodsayshello da7be430ce update dependencies 2022-03-28 16:07:10 +00:00
chmodsayshello fc50c81571 update main lua script to add lodestone etc. 2022-03-28 16:06:30 +00:00
Mikita Wiśniewski fa4a554b28 Fix some format issues in mcl_mushroom (again)
just forgot to fix something
2022-03-26 20:40:22 +07:00
Mikita Wiśniewski ddb618c2e3 Fix comment translation in mcl_mushroom 2022-03-26 20:29:25 +07:00
Mikita Wiśniewski 297f9ba11a Fix some formatting issues 2022-03-25 11:20:07 +07:00
kay27 86bef3e055 Merge master into testing 2022-03-25 02:33:15 +04:00
kay27 833e32410e Merge pull request 'Fix Respawn Anchor Not Glowstone Consuming On Charge' (#264) from chmodsayshello/MineClone5:Respawn_Anchor_FIX into master
Reviewed-on: MineClone5/MineClone5#264
2022-03-24 22:30:43 +00:00
CableGuy67 9e72966f91 missed the comma on the previous line
When removing the last line the previous comma wasn't removed.
2022-03-24 18:42:45 +00:00
CableGuy67 7ad5f7c66e Incorrect fortune effect on a non-ore
This Easter Egg had almost a year. Time to put it to bed.
2022-03-24 17:44:09 +00:00
chmodsayshello 1c12f3da19 Charging no longer not consuming 2022-03-23 21:11:03 +00:00
chmodsayshello 6c41b8a265 remove debug logging 2/2 2022-03-23 13:55:38 +00:00
chmodsayshello fc59d05679 remove debug logging 1/2 2022-03-23 13:54:53 +00:00
chmodsayshello a32531c8f6 update mcl_spawm to support respawn anchors 2022-03-23 13:52:53 +00:00
chmodsayshello fb6315ea62 add crafting recepie 2022-03-23 13:51:28 +00:00
chmodsayshello d97c7b29c6 update dependencies 2022-03-23 13:46:11 +00:00
chmodsayshello 1dd81decd5 update init.lua to load the respawn anchors 2022-03-23 13:45:14 +00:00
chmodsayshello 57c099943a upload main lua script 2022-03-23 13:44:18 +00:00
chmodsayshello 6521e1f22e Upload Textures 2/2 2022-03-23 13:43:03 +00:00
chmodsayshello f49d7da655 Upload Textures 1/2 2022-03-23 13:42:36 +00:00
kay27 a75c8d427e Fix rabbit crash 2022-03-21 19:05:21 +04:00
kay27 44d8caf3b7 Fix mcl_antispam 2022-03-21 14:28:58 +04:00
kay27 6be3d2e0d4 Add mcl_antispam 2022-03-21 05:36:02 +04:00
kay27 0c04ff93fd Merge master into testing 2022-03-21 00:18:05 +04:00
kay27 ed656a095d Restore rabbit textures 2022-03-20 07:06:59 +04:00
Mark Roth c282324661 #248 move compostability rating to items groups instead of the list in the mod 2022-03-20 01:07:42 +02:00
kay27 4f0dbec948 Use Perlin noise to initialize chorus growth 2022-03-18 01:07:06 +04:00