author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
139,040
28.07.2017 22:32:31
-7,200
8fad60d16bae5d2f907987ecfc21b79bcf6ad237
Updated ILiquidStack_ILiquidDefinition.md Added Note on Zensetters
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Variable_Types/ILiquidStack_ILiquidDefinition.md", "new_path": "docs/Vanilla/Variable_Types/ILiquidStack_ILiquidDefinition.md", "diff": "@@ -18,7 +18,7 @@ val lavaWithAmount = <liquid:lava> * 1000;\n```\n## Get fluid properties\n-As an ILiquidStac...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated ILiquidStack_ILiquidDefinition.md Added Note on Zensetters
139,040
29.07.2017 14:13:13
-7,200
09e1bf13ca47653be9ec83490f9b53599770a112
Added Recipe_Functions.md
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Recipe_Functions.md", "diff": "+# Recipe Functions\n+\n+\n+# IRecipeFunction\n+Some recipes support custom functions to programmatically determine their output.\n+This can be especially useful if you need some of the input...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Recipe_Functions.md
139,040
30.07.2017 10:19:25
-7,200
8308ebf9ece076cd4862849d94b324125f13ca27
Added IClient and IServer to the Game section
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Game/IClient.md", "diff": "+# ICliet\n+\n+The Client Interface is for providing general information on a Client.\n+This is only available for clients, these won't work on a sever!\n+\n+## Where to find the client class?\n+The Client...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added IClient and IServer to the Game section
139,040
30.07.2017 11:50:05
-7,200
b19c179c26a03071a8829ded6b360e619a742c4a
Added Commands to Advanced_Fucntions
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Commands.md", "diff": "+# Custom Commands\n+\n+CraftTweaker allows you to add custom commands.\n+This only works prior to 1.12, though.\n+\n+## MineTweaker Commands\n+Generally, a MineTweaker command is called like this:\n...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Commands to Advanced_Fucntions
139,040
30.07.2017 18:51:15
-7,200
07a47d24e976ca662dbe87f5e39cc674e02ccd75
Added Events page WIP
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Events.md", "diff": "+# Events\n+## Pre 1.12\n+Before 1.12, a lot of code was different, so was the way of implementing some Events\n+In before 1.12 there were essentially two events you could subscribe to and that was whe...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Events page WIP
139,040
30.07.2017 18:53:47
-7,200
db812f3be7507dead34e34126d17f6385d30e683
Added pre-1.12 Warnings to IServer.md
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Game/IServer.md", "new_path": "docs/Vanilla/Game/IServer.md", "diff": "@@ -10,6 +10,7 @@ The Server class is a globally registered Symbol, so you won't need to import an\n#### Add Commands\nCheck the Commands entry in the AdvancedFunctions section...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added pre-1.12 Warnings to IServer.md
139,040
02.08.2017 15:16:17
-7,200
fec1a52f5c5de35bffae99c8635e6db4dfce6acc
Added Ore Bracket Handler
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Brackets/Bracket_Ore.md", "diff": "+# Ore Dictionary Bracket Handler\n+\n+The Ore Dictionary Bracket Handler gives you access to the Ore Dictionaries in the game.\n+\n+Ore Dictionarys are referenced in the Ore Dictionary Bracket Han...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Ore Bracket Handler
139,039
02.08.2017 12:32:43
14,400
53c1a94810a107fd8c7fd055fb6a79a6f26e3aaf
Fix menu typo for Conditional Statements page
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -15,7 +15,7 @@ pages:\n- Advanced Functions:\n- Arrays and Loops: 'AdvancedFunctions/Arrays_and_Loops.md'\n- Calculations: 'AdvancedFunctions/Calculations.md'\n- - Contional Statements: 'AdvancedFunctions/Cond...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Fix menu typo for Conditional Statements page
139,040
02.08.2017 19:30:22
-7,200
b02a8388edc04d14dd7de3926b76bfd6af8485e1
Closed Code Segment in IItemStack
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Variable_Types/IItemStack.md", "new_path": "docs/Vanilla/Variable_Types/IItemStack.md", "diff": "@@ -194,6 +194,7 @@ Returns an IItemStack with the given Damage.\nReturns a List of IOreDictEntries referring to this item.\n```\n<minecraft:apple>.or...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Closed Code Segment in IItemStack
139,040
02.08.2017 19:38:05
-7,200
a66480b311ad2411739d780722a0eb237e267581
Closed Code Segment in OreDict.md Also fixed typo
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/OreDict.md", "new_path": "docs/Vanilla/OreDict.md", "diff": "@@ -142,11 +142,12 @@ val OD = <ore:ingotIron>;\n//prints \"ingotIron\"\nprint(OD.name);\n+```\n## Get the first item of an oreDic\n-I have no idea why you would ever need this, but here...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Closed Code Segment in OreDict.md Also fixed typo
139,040
02.08.2017 19:50:30
-7,200
2d2feaa7a0d183f535b4ae0042c6accbe6dbe84f
Updated ConditionalStatements Added Java Keyword to Code Segments to ensure correct Syntax highlighting
[ { "change_type": "MODIFY", "old_path": "docs/AdvancedFunctions/Conditional_Statements.md", "new_path": "docs/AdvancedFunctions/Conditional_Statements.md", "diff": "@@ -8,7 +8,7 @@ That's what you need conditional Statements for.\nAn If-Statement is the first part of a conditional statement. It decla...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated ConditionalStatements Added Java Keyword to Code Segments to ensure correct Syntax highlighting
139,040
02.08.2017 19:56:15
-7,200
477acce0ea6bd1f19a310bbec7ecc159ca434324
Updated Custom_Functions.md Added Java Keyword to Ensure that the Syntax highlighting works correctly
[ { "change_type": "MODIFY", "old_path": "docs/AdvancedFunctions/Custom_Functions.md", "new_path": "docs/AdvancedFunctions/Custom_Functions.md", "diff": "@@ -7,7 +7,7 @@ You can even nest functions in functions\n## Basic Syntax\nGenerally, you declare a function using:\n-```\n+```Java\nfunction NAME (...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Custom_Functions.md Added Java Keyword to Ensure that the Syntax highlighting works correctly
139,040
02.08.2017 19:57:12
-7,200
402a2be0fb9e963f56754f83f4663f8eb3d12303
Updated Recipes_Crafting_TAble.md Added 'Java' Identifier to ensure that syntax highlighting works correctly
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Recipes/Recipes_Crafting_Table.md", "new_path": "docs/Vanilla/Recipes/Recipes_Crafting_Table.md", "diff": "@@ -20,7 +20,7 @@ There are several ways of removing recipes.\n### remove\n-```\n+```Java\nrecipes.remove(output, NBTMatch);\n```\n@@ -32,7 ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Recipes_Crafting_TAble.md Added 'Java' Identifier to ensure that syntax highlighting works correctly
139,040
02.08.2017 20:37:06
-7,200
d195989428fa1e9646c1ba100d36a599da5cc6c9
Removed Commands as not in 1.12
[ { "change_type": "DELETE", "old_path": "docs/AdvancedFunctions/Commands.md", "new_path": null, "diff": "-# Custom Commands\n-\n-CraftTweaker allows you to add custom commands.\n-This only works prior to 1.12, though.\n-\n-## MineTweaker Commands\n-Generally, a MineTweaker command is called like this...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Removed Commands as not in 1.12
139,040
02.08.2017 20:37:29
-7,200
5d6b447cd181f22a9895526d88dd928dd756fa8c
Removed Events as not (yet) in 1.12
[ { "change_type": "DELETE", "old_path": "docs/AdvancedFunctions/Events.md", "new_path": null, "diff": "-# Events\n-## Pre 1.12\n-Before 1.12, a lot of code was different, so was the way of implementing some Events\n-In before 1.12 there were essentially two events you could subscribe to and that was ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Removed Events as not (yet) in 1.12
139,040
02.08.2017 20:39:40
-7,200
ae56476f9925231f07297bc4aa943caf06f5a319
Added Liquid Bracket Handler Alias
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Brackets/Bracket_Liquid.md", "new_path": "docs/Vanilla/Brackets/Bracket_Liquid.md", "diff": "@@ -5,8 +5,9 @@ The liquid Bracket Handler gives you access to the liquids in the game. It is on\nLiquids are referenced in the Liquid Bracket Handler by ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Liquid Bracket Handler Alias
139,040
02.08.2017 20:43:54
-7,200
7b891700819fbdfce04eb73c108d2f0361d19642
Removed IServer.md as not int 1.12
[ { "change_type": "DELETE", "old_path": "docs/Vanilla/Game/IServer.md", "new_path": null, "diff": "-# IServer\n-The Server interface is for interaction with a server.\n-\n-## Where to find the Server class?\n-The Server class is a globally registered Symbol, so you won't need to import anything, you ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Removed IServer.md as not int 1.12
139,040
02.08.2017 21:26:02
-7,200
1287b64c13fb8911094578955a81c093de7f0d9f
Added Potion Bracket Handler
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Brackets/Bracket_Potion.md", "diff": "+# Potion Bracket Handler\n+\n+The Potion Bracket Handler gives you access to the Potions in the game. It is only possible to get Potions registered in the game, so adding or removing mods may c...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Potion Bracket Handler
139,040
02.08.2017 21:26:51
-7,200
76d867c561fe95851c0f3e350917ecb46b419394
Added IPotion entry
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Variable_Types/IPotion.md", "diff": "+# IPotion\n+\n+An IPotion object refers a potion in the game.\n+\n+## Getting an IPotion object\n+You can get such an object through the use of the Potion Bracket handler\n+\n+```Java\n+<potion:...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added IPotion entry
139,040
02.08.2017 21:37:39
-7,200
0f1a95fdf8a6dad985ce94ae331cbff9adcb7351
Updated Mods.md Added the items getter Replaced the example code with a structured table
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Game/Mods.md", "new_path": "docs/Vanilla/Game/Mods.md", "diff": "@@ -23,11 +23,10 @@ val mod = loadedMods[\"mcp\"];\n# IMod\nThe IMod Interface provides you with some general information on a specific mod\n-```\n-val mod = loadedMods[\"mcp\"];\n-\...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Mods.md Added the items getter Replaced the example code with a structured table
139,040
02.08.2017 22:15:38
-7,200
82be4101a1c77e3c20ceb9993374adc6bb779be8
Moved IPlayer explanation from Recipe_Functions to Game/Iplayer.md
[ { "change_type": "MODIFY", "old_path": "docs/AdvancedFunctions/Recipe_Functions.md", "new_path": "docs/AdvancedFunctions/Recipe_Functions.md", "diff": "@@ -70,26 +70,6 @@ The IcraftingInfo object contains all kinds of information on the crafting proce\n`cInfo.player` returns the player conducting th...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Moved IPlayer explanation from Recipe_Functions to Game/Iplayer.md
139,040
02.08.2017 22:23:34
-7,200
7a6bb3f0580b5c6e1615963856e4d6434c1cf7e9
Update IPlayer.md Added forgotten Zengetters/Setters
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Game/IPlayer.md", "new_path": "docs/Vanilla/Game/IPlayer.md", "diff": "@@ -18,6 +18,10 @@ Zengetters are for retrieving information. Usually either assigned to a variable\n| currentItem | returns the item the player is currently holding | IItemSta...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Update IPlayer.md Added forgotten Zengetters/Setters
139,040
02.08.2017 22:34:57
-7,200
2405a2b06d410c2869bc9a0efbb09702bb761090
Updated Recipes_Crafting_Table.md Added the remove functions that use recipe names. Changed the example so that it uses a name. We want to do everything the correct way, don't we :smile:
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Recipes/Recipes_Crafting_Table.md", "new_path": "docs/Vanilla/Recipes/Recipes_Crafting_Table.md", "diff": "@@ -59,6 +59,23 @@ If `wildcard` is true, it will remove shapeless recipes that craft `output` with\nFurthermore, `inputs` is optional. If o...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Recipes_Crafting_Table.md Added the remove functions that use recipe names. Changed the example so that it uses a name. We want to do everything the correct way, don't we :smile:
139,040
02.08.2017 22:39:22
-7,200
a64726440c52e8677955a78d36d9e9cd29b60d9f
Updated Recipes_Furnace.md Added the removeAll function Added `java` to code fragments to ensure syntax highlighting
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Recipes/Recipes_Furnace.md", "new_path": "docs/Vanilla/Recipes/Recipes_Furnace.md", "diff": "@@ -9,31 +9,36 @@ Crafttweaker allows you to `Add` and `Remove` Furnace recipes and change the fue\nThere are 2 ways to remove Furnace recipes, being:\n-`...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Recipes_Furnace.md Added the removeAll function Added `java` to code fragments to ensure syntax highlighting
139,040
03.08.2017 08:56:17
-7,200
c3604b1bee051e1550a37a0d552bf11e900b2038
Fixed mkdocs entry Added `.md` to the liquid bracket handler path
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -23,7 +23,7 @@ pages:\n- Brackets:\n- Items: 'Vanilla/Brackets/Bracket_Item.md'\n- Entities: 'Vanilla/Brackets/Bracket_Entity.md'\n- - Liquids: 'Vanilla/Brackets/Bracket_Liquid'\n+ - Liquids: 'Vanilla/Brackets...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Fixed mkdocs entry Added `.md` to the liquid bracket handler path
139,040
03.08.2017 09:19:06
-7,200
6d94f2ee7165ccfa6e04553ec1d5f24bb57eb9f8
Updated IGame.md Removed the lock command as no longer present in 1.12. Sorted the Table alphabetically by the zengetter names.
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Game/IGame.md", "new_path": "docs/Vanilla/Game/IGame.md", "diff": "@@ -7,12 +7,11 @@ Can be accessed using `game`\n| Zengetter | What does it do? | Return Type | Usage |\n|-----------|-----------------------------------------|---------------------...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated IGame.md Removed the lock command as no longer present in 1.12. Sorted the Table alphabetically by the zengetter names.
139,040
03.08.2017 09:35:44
-7,200
1aec203bea8cbf51db79569ade3e97fd89a4d3c3
Added IItemDefinition
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Variable_Types/IItemDefinition.md", "diff": "+# IItemDefinition\n+\n+An IItemDefinition object is the direct reference to an item.\n+It is different from an IItemStack as this only refers to the item, it does not include any meta-in...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added IItemDefinition
139,040
03.08.2017 10:06:42
-7,200
7d8675eae9932c762d0ed9a3e43b298a08f4c4b6
Started a Tipps and Tricks Section with some Tipps for semi-experienced Tweakers
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -71,6 +71,7 @@ pages:\n- Pulverizer: 'Mods/Modtweaker/ThermalExpansion/Pulverizer.md'\n- Refinery: 'Mods/Modtweaker/ThermalExpansion/Refinery.md'\n- Sawmill: 'Mods/Modtweaker/ThermalExpansion/Sawmill.md'\n+ - ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Started a Tipps and Tricks Section with some Tipps for semi-experienced Tweakers
139,040
03.08.2017 10:07:14
-7,200
77dec2355d775cb462674e6a2bdd090a1aca4941
Added Tip to use ItemDefinitions for meta ranges
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Tipps_Tricks/Items/IItemDefinition_Metas.md", "diff": "+# Using IItemDefinitions to save a lot of time when referring meta-items\n+\n+## Problem\n+Let's say we want to remove the recipes of some specific colors of wool.\n+White wool has the...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Tip to use ItemDefinitions for meta ranges
139,040
03.08.2017 11:55:15
-7,200
b0b655ed846b552c982b665ba3c1453586a59d96
Added Tutorial Foreword and General Tip to use Loops
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Tipps_Tricks/Foreword.md", "diff": "+# Foreword\n+\n+This section will contain Tipps and Tricks from experienced Tweakers.\n+Remember that these are really individual and some can also hinder you from achieving your aims instead of facilita...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Tutorial Foreword and General Tip to use Loops
139,040
03.08.2017 12:06:32
-7,200
7019de8f0b8c23de14790c26ce0630403d2ace94
Added General Tip to split files
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Tipps_Tricks/General/Split_Files.md", "diff": "+# Split your scripts into multiple files\n+\n+It is a good idea to split your script into multiple files\n+\n+## Problem\n+- When writing scripts for bigger modpacks, your script might soon be...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added General Tip to split files
139,040
03.08.2017 12:39:24
-7,200
852ad93cfa3821ace955c86f380806081002a305
Updated Mods.md Added the contains ZenMethod
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Game/Mods.md", "new_path": "docs/Vanilla/Game/Mods.md", "diff": "@@ -4,12 +4,18 @@ You can use the keyword `loadedMods` to access all currently loaded mods.\n## Check if a mod is loaded\n-Use the `in`function to check if a mod is loaded:\n+Use the...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Mods.md Added the contains ZenMethod
139,040
03.08.2017 12:56:49
-7,200
2ca14c5a898e3e5a95015a59cdf26b748738c399
Added Potions to IGame and Commands IGame -> Added potions ZenGetter Commands -> Added `/ct potions` command
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Commands.md", "new_path": "docs/Vanilla/Commands.md", "diff": "@@ -165,6 +165,19 @@ Outputs a list of all the OreDict entries in the game to the crafttweaker.log fi\nIf a name is supplied, the names of all the items registered to the oredict will ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Potions to IGame and Commands IGame -> Added potions ZenGetter Commands -> Added `/ct potions` command
139,040
03.08.2017 14:48:23
-7,200
97d9abda0caa97b321f840c240c4d94b1f30c8e2
Typo (?) in Loops_REadability.md rule of thumb
[ { "change_type": "MODIFY", "old_path": "docs/Tipps_Tricks/General/Loops_Readability.md", "new_path": "docs/Tipps_Tricks/General/Loops_Readability.md", "diff": "@@ -5,7 +5,7 @@ We all have seen it: Scripts with more than 500 lines where it sais 500 times `r\nNot only is this a pain to write, but it i...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Typo (?) in Loops_REadability.md rule of thumb
139,040
03.08.2017 14:53:13
-7,200
d03a6a0f378331079fef23108aa71b1cb6d8cdef
Added Command `/ct Syntax`
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Commands.md", "new_path": "docs/Vanilla/Commands.md", "diff": "@@ -226,6 +226,19 @@ Description:\nOutputs a list of all the items in the seed registry to the crafttweaker.log file.\n+## Syntax\n+\n+Usage:\n+\n+`/craftweaker syntax`\n+\n+`/ct synta...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Command `/ct Syntax`
139,040
06.08.2017 12:57:02
-7,200
1ef2beb2af84ef6e0a4b5f89ccc232d0649c4948
Added JEI entry
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/JEI/JEI.md", "diff": "+# JEI\n+\n+CraftTweaker comes with support for JustEnoughItems (JEI).\n+Currently all you can do is hide items from JEI.\n+\n+## Remove\n+You can either just remove the item from JEI or remove it and all of it's ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added JEI entry
139,040
06.08.2017 13:03:44
-7,200
767da143c24e9063fe2ad9b9128461e0e1bb4db5
Updated Renaming_Tooltips.md Added clearTolltip()
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Item_Modification/Renaming_Tooltips.md", "new_path": "docs/Vanilla/Item_Modification/Renaming_Tooltips.md", "diff": "@@ -33,8 +33,14 @@ game.setLocalization(tile.chest.name,\"StorageBox Deluxe\")\n# Tooltips\n-Adding a tooltip is really easy:\n-Al...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Renaming_Tooltips.md Added clearTolltip()
139,040
08.08.2017 09:37:36
-7,200
5bef781bdb8119f18a1fd9f31779611065cf2dc0
Entity Changes Moved IEntityDefinition Added IentityDrop
[ { "change_type": "RENAME", "old_path": "docs/Vanilla/Variable_Types/IEntityDefinition.md", "new_path": "docs/Vanilla/Entities/IEntityDefinition.md", "diff": "@@ -64,3 +64,14 @@ val entity = <entity:sheep>;\nentity.remove(<minecraft:wool>);\n```\n`item` is the item to be removed from being a drop and...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Entity Changes Moved IEntityDefinition Added IentityDrop
139,040
08.08.2017 09:44:55
-7,200
fc7884bcb3314f0bcd66f48a5739a1cd99155a0a
Updated IEntityDefinition Added the weigted Drop methods
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Entities/IEntityDefinition.md", "new_path": "docs/Vanilla/Entities/IEntityDefinition.md", "diff": "@@ -39,19 +39,27 @@ This adds a normal drop, a drop that can occur whenever the mob is killed by wha\n```\nval entity = <entity:sheep>;\n-//addDrop(...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated IEntityDefinition Added the weigted Drop methods
139,040
08.08.2017 09:45:16
-7,200
5ff7d214ac940c69d0206fe38e249f4ea6648a65
Added potion getter liquidColour
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Variable_Types/IPotion.md", "new_path": "docs/Vanilla/Variable_Types/IPotion.md", "diff": "@@ -14,7 +14,8 @@ You can get such an object through the use of the Potion Bracket handler\nCurrently, all you can do with potions is retrieving some inform...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added potion getter liquidColour
139,040
08.08.2017 11:18:45
-7,200
c41cd5d679c9eee952108c45dec4e65d29ee8b18
Added ingredient.ItemArray
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Variable_Types/IIngredient.md", "new_path": "docs/Vanilla/Variable_Types/IIngredient.md", "diff": "@@ -59,7 +59,9 @@ Using the OR methods is not adviced, as JEI does not display these recipes and s\nSometimes an IIngredient represents more than on...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added ingredient.ItemArray
139,040
08.08.2017 13:17:12
-7,200
11edf60dc729f3e6b809f0da2a8885c994bfdbfd
Changes to Items Put them in a separate Category Split Renaming_Tooltips into their respective Entries
[ { "change_type": "RENAME", "old_path": "docs/Vanilla/Item_Modification/Item_Conditions.md", "new_path": "docs/Vanilla/Items/Item_Conditions.md", "diff": "" }, { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Items/Renaming.md", "diff": "+# Renaming\n+\n+Always ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Changes to Items - Put them in a separate Category - Split Renaming_Tooltips into their respective Entries
139,040
08.08.2017 13:20:04
-7,200
7753030f29bfa5aaa407509f4836758fd5fd63d1
Moved IItemStack and IItemDefinition to Vanilla/Items
[ { "change_type": "RENAME", "old_path": "docs/Vanilla/Variable_Types/IItemDefinition.md", "new_path": "docs/Vanilla/Items/IItemDefinition.md", "diff": "" }, { "change_type": "RENAME", "old_path": "docs/Vanilla/Variable_Types/IItemStack.md", "new_path": "docs/Vanilla/Items/IItemStack.m...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Moved IItemStack and IItemDefinition to Vanilla/Items
139,040
08.08.2017 13:27:51
-7,200
d213b4d72f080eaffa8fea73ee49d9e2226766fc
Moved Liquids to their own category
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Liquids/ILiquidDefinition.md", "diff": "+# ILiquidDefinition\n+The ILiquidDefinition defines the liquid an ILiquidStack consists of.\n+Unlike the ILiquidStack, this interface allows you to change fluid properties.\n+\n+## Methods\n+...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Moved Liquids to their own category
139,040
08.08.2017 13:54:34
-7,200
1f3ecff3c27707bc9e79d7e7d733e4c11f701485
Added Item_Transformers entry Yes I know that's already covered in IIngredient, just to be save
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Items/IItemStack.md", "new_path": "docs/Vanilla/Items/IItemStack.md", "diff": "@@ -198,3 +198,6 @@ Returns a List of IOreDictEntries referring to this item.\n### As IBlock\nYou can cast an IItemStack to an IBlock, as long as you are referring to a...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Item_Transformers entry Yes I know that's already covered in IIngredient, just to be save
139,040
10.08.2017 11:17:08
-7,200
ad16708f5f49484089658dce506dadd8d9775703
Updated Arrays and Loops Added mod.items example
[ { "change_type": "MODIFY", "old_path": "docs/AdvancedFunctions/Arrays_and_Loops.md", "new_path": "docs/AdvancedFunctions/Arrays_and_Loops.md", "diff": "@@ -107,4 +107,9 @@ for i in 10 .. 20 {\n//defines the variable \"i\" with each number from 10 to 19 (i.e. 10,11,12,...,18,19)\nprint(i);\n}\n+\n+fo...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Arrays and Loops Added mod.items example
139,040
14.08.2017 16:35:01
-7,200
50bf40f38013f0c466d61cb6bf1596641049623d
Updated IItemStack Added some more ways how to call an IItemStack object
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Items/IItemStack.md", "new_path": "docs/Vanilla/Items/IItemStack.md", "diff": "@@ -4,8 +4,19 @@ An IItemStack Object consists of an item definition, a meta/damage value and NBT\nIn other words, it refers an item or a block.\n## Calling an IItemSta...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated IItemStack Added some more ways how to call an IItemStack object
139,040
15.08.2017 17:56:53
-7,200
ac4fac8a2338b8f50e25135fb8496f67db47d648
Added Description page for the basic variable functions (such as indexGet/concatentation etc)
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Variable_Types/Basic_Variables_Functions.md", "diff": "+# Basic variable functionality\n+\n+The most basic variable types of ZenScript are Strings, integers and booleans.\n+\n+## Most single types\n+`true == true` You can check if t...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Description page for the basic variable functions (such as indexGet/concatentation etc)
139,040
17.08.2017 01:30:32
-7,200
d201daa78dd9aecc0280398523ecabff2c11b2d1
Potions Update New Potion Syntax Moved Potion to own section
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Brackets/Bracket_Potion.md", "new_path": "docs/Vanilla/Brackets/Bracket_Potion.md", "diff": "@@ -5,9 +5,9 @@ The Potion Bracket Handler gives you access to the Potions in the game. It is on\nPotions are referenced in the Potion Bracket Handler lik...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Potions Update New Potion Syntax Moved Potion to own section
139,040
17.08.2017 01:31:56
-7,200
9694fda43f3e109d6d5aa2ada4d92165bd386925
Added IItemUtils.md
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Game/IItemUtils.md", "diff": "+# IItemUtils\n+\n+The ItemUtils interface provides various item utils.\n+It can be accessed using the `items` keyword.\n+\n+## Creating Potions\n+The createPotions function allows you to create custom ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added IItemUtils.md
139,040
17.08.2017 02:14:41
-7,200
2aa23c5b1c4326185158e6b9f18028bff3e0b71d
Added Preprocessor entries
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Preprocessors/DebugPreprocessor.md", "diff": "+# DebugPreprocessor\n+\n+The debugPreprocessor enables debug mode.\n+\n+## Call\n+You call the debug Preprocessor by adding `#debug` to your script file.\n+\n+## What it does\...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Preprocessor entries
139,040
17.08.2017 02:53:00
-7,200
35b27b7bb990fd4efe94281a812cb39034766b74
Updated Commands.md Added the categories to the Names command
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Commands.md", "new_path": "docs/Vanilla/Commands.md", "diff": "@@ -146,13 +146,29 @@ Outputs a list of all the mods and their versions in the game to the crafttweake\nUsage:\n-`/craftweaker names`\n+`/craftweaker names [category]`\n-`/ct names`\n+...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated Commands.md Added the categories to the Names command
139,040
17.08.2017 02:58:55
-7,200
6aa47f14368d23397b85781cf85918a4eee70a72
Entities New way to call them
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Brackets/Bracket_Entity.md", "new_path": "docs/Vanilla/Brackets/Bracket_Entity.md", "diff": "@@ -5,9 +5,9 @@ The Entity Bracket Handler gives you access to the Entities (e.g. Mobs, tile ent\nEntities are referenced in the Entity handler this way:\...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Entities New way to call them
139,040
18.08.2017 19:35:58
-7,200
09eccc5afb3a2905163f4388d35afe0597a0f5ba
Standard and Comment
[ { "change_type": "MODIFY", "old_path": "docs/AdvancedFunctions/Arrays_and_Loops.md", "new_path": "docs/AdvancedFunctions/Arrays_and_Loops.md", "diff": "@@ -109,7 +109,7 @@ for i in 10 .. 20 {\n}\nfor item in loadedMods[\"minecraft\"].items {\n- defines the varaible \"item\" with each item added by t...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Standard and Comment
139,040
25.08.2017 00:27:05
-7,200
0a101b71ed868d64e4acba227f3ac05f7f6339b3
Added `/ct conflict` Command and made the list alphabetical again
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Commands.md", "new_path": "docs/Vanilla/Commands.md", "diff": "@@ -68,17 +68,18 @@ Description:\nOpens your browser with the GitHub bug tracker.\n-## Entities\n+\n+## Conflict\nUsage:\n-`/craftweaker entities`\n+`/craftweaker conflict`\n-`/ct enti...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added `/ct conflict` Command and made the list alphabetical again
139,033
26.08.2017 14:45:00
14,400
2dca964ee3690855246ce5486c8e3761fa79f1aa
Added walkthrough
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/ContentTweaker/ContentTweaker.md", "diff": "+# ContentTweaker\n+\n+ContentTweaker allows for the Creation of Blocks, Items, Fluids, and other Minecraft Additions through ZenScript!\n\\ No newline at end of file\n" }, { "change_...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added walkthrough
139,033
26.08.2017 15:14:40
14,400
3a3c756c72fcf204be0b1d81d757edb496dfaefe
Added beginning of Block documentation
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/ContentTweaker.md", "new_path": "docs/Mods/ContentTweaker/ContentTweaker.md", "diff": "# ContentTweaker\n-ContentTweaker allows for the Creation of Blocks, Items, Fluids, and other Minecraft Additions through ZenScript!\n\\ No newline ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added beginning of Block documentation
139,040
27.08.2017 22:37:53
-7,200
bad22d56f88c4d7f32de390b5af892c74f51f2bf
Now makedocs should work!
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -38,12 +38,12 @@ pages:\n- Ores: 'Vanilla/Brackets/Bracket_Ore.md'\n- Potions: 'Vanilla/Brackets/Bracket_Potion.md'\n- Entities:\n- - IEntityDefinition: 'Vanilla/Entites/IEntityDefinition.md'\n+ - IEntityDefin...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Now makedocs should work!
139,040
28.08.2017 00:10:52
-7,200
8be556d3e1175a4b81cb66a9bc605b6fd6d5faf9
IBlockPattern Can't test though as there's currently no way of getting these...
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Blocks/IBlock.md", "new_path": "docs/Vanilla/Blocks/IBlock.md", "diff": "@@ -17,3 +17,14 @@ There are multiple ways thet return an IBlock object:\n| definition | Returns the Block's definition | IBlockDefinition |\n| meta | Returns the Block's met...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
IBlockPattern Can't test though as there's currently no way of getting these...
139,040
29.08.2017 13:32:14
-7,200
501fe5918b84606299fe865c374b3b8bfce45c35
Typo in StokedCrucible page
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Modtweaker/BetterWithMods/StokedCrucible.md", "new_path": "docs/Mods/Modtweaker/BetterWithMods/StokedCrucible.md", "diff": "@@ -14,7 +14,9 @@ mods.betterwithmods.StokedCrucible.add(<minecraft:dirt>,[<minecraft:stone>]);\n## Removal\n```\n-mods.better...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Typo in StokedCrucible page
139,040
01.09.2017 10:21:03
-7,200
84b8bf9dc20a9e751692c1894f831ba6a82abc91
Loader Preprocessor
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Preprocessors/LoaderPreprocessor.md", "diff": "+# LoaderPreprocessor\n+\n+The loader preprocessor will set the script's loader.\n+\n+## Call\n+You call the loader Preprocessor by adding `#loader loaderName` to your script ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Loader Preprocessor
139,040
01.09.2017 10:21:25
-7,200
545df746371bcda76a399c56dc7f40b51e368e3e
Mod Loaded Preprocessor
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Preprocessors/ModLoadedPreprocessor.md", "diff": "+# ModLoaderPreprocessor\n+\n+The modLoaded Preprocessor only executes a script, if a certain mod is present.\n+\n+## Call\n+You call the modLoaded Preprocessor by adding `...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Mod Loaded Preprocessor
139,040
01.09.2017 10:21:52
-7,200
55760804f6277bd05bf7da90c898685b7bb002cf
NoRun Preprocessor
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Preprocessors/NoRunPreprocessor.md", "diff": "+# NoRun Preprocessor\n+\n+The NoRun Preprocessor disables the script from being loaded COMPLETELY.\n+\n+## Call\n+You call the NoRun Preprocessor by adding `#norun` to your sc...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
NoRun Preprocessor
139,040
01.09.2017 10:22:08
-7,200
b280d349efdc83666b7ea6b8e8c7a098596a3e7f
Priority Preprocessor
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/AdvancedFunctions/Preprocessors/PriorityPreprocessor.md", "diff": "+# PriorityPreprocessor\n+\n+The Priority Preprocessor allows you to give your scripts a loading priority.\n+\n+## Call\n+You call the Priority Preprocessor by adding `#prio...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Priority Preprocessor
139,040
01.09.2017 10:42:11
-7,200
d9e2891eb8cbec2d551a4386b82c3b9731cec84d
DumpZs command
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Commands.md", "new_path": "docs/Vanilla/Commands.md", "diff": "@@ -94,6 +94,21 @@ Description:\nOpens your browser with a link to the Discord server.\n+## DumpZs\n+\n+Usage:\n+\n+`/craftweaker dumpzs`\n+\n+`/ct dumpzs`\n+\n+\n+Description:\n+\n+Ou...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
DumpZs command
139,040
01.09.2017 18:45:43
-7,200
5a92aaeae23e4e0b92b768a2537d3c4960c43044
Crossing fingers that it will work :smile:
[ { "change_type": "ADD", "old_path": "docs/assets/logo.png", "new_path": "docs/assets/logo.png", "diff": "Binary files /dev/null and b/docs/assets/logo.png differ\n" }, { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -114,3 +114,10 @@ mar...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Crossing fingers that it will work :smile:
139,040
01.09.2017 19:00:36
-7,200
eb13ea8bf9435f88cc5fb2ec6b58e1b4987febf9
Should look a bit better that way
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "# If you add a page, you must add it to the index here\npages:\n- Home: 'index.md'\n- - Getting Started:\n- Getting Started With Scripts: 'Getting_Started.md'\n- - Commands:\n- Commands: 'Vanilla/Commands.md'\n- ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Should look a bit better that way
139,040
03.09.2017 00:00:31
-7,200
aeff6e015c091456622242aef4b26aa1d4a609fc
Fixed Typo in mkdocs
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -70,7 +70,7 @@ pages:\n- Mods:\n- ContentTweaker:\n- ContentTweaker: 'Mods/ContentTweaker/ContentTweaker.md'\n- - WalkThrough: 'Mods/ContentTweaker/WalkThough'\n+ - WalkThrough: 'Mods/ContentTweaker/WalkThroug...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Fixed Typo in mkdocs
139,040
03.09.2017 00:23:19
-7,200
c570107d0ecf093501e0f203756abae0b53cf270
Contenttweaker Block Bracker Handler
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/ContentTweaker/Vanilla/Brackets/Bracket_Blocks.md", "diff": "+# Block Bracket Handler\n+\n+The Block Bracket Handler gives you access to the blocks in the game. It is only possible to get blocks registered in the game, so adding or rem...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Contenttweaker Block Bracker Handler
139,040
03.09.2017 00:23:44
-7,200
5ee6f3b8a3dc5c841af9d06b607c0c03cd4a287d
Interlinked Bracket Handlers to their return types
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Brackets/Bracket_Entity.md", "new_path": "docs/Vanilla/Brackets/Bracket_Entity.md", "diff": "@@ -11,7 +11,7 @@ Entities are referenced in the Entity handler this way:\n```\nIf the mob/entity is found, this will return an IEntityDefinition Object.\...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Interlinked Bracket Handlers to their return types
139,040
03.09.2017 16:18:20
-7,200
1bd9f9350367ff180171c72ebd5b12f66d841bb9
Added WeightedItemStack
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Vanilla/Items/WeightedItemStack.md", "diff": "+# WeightedItemStack\n+A Weighted Item Stack is like a normal [IItemStack](IItemStack) but has a percentage added to it.\n+You normally use them when dealing with percentage based actions like d...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added WeightedItemStack
139,040
03.09.2017 17:03:58
-7,200
700dfb25db156f882b6a9fabc0d28857cf153226
Added Interlinks to Blocks group
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Blocks/IBlock.md", "new_path": "docs/Vanilla/Blocks/IBlock.md", "diff": "@@ -6,9 +6,9 @@ It refers to a block in the game.\nThere are multiple ways thet return an IBlock object:\n-* Casting a IItemStack as IBlock (using the `AS` keyword)\n+* Casti...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added Interlinks to Blocks group
139,040
03.09.2017 17:04:26
-7,200
174f62a4b8575ef92f5efc775d60df01a976b501
Changed relative path names to absolute path names for the bracket handlers
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Brackets/Bracket_Entity.md", "new_path": "docs/Vanilla/Brackets/Bracket_Entity.md", "diff": "@@ -11,7 +11,7 @@ Entities are referenced in the Entity handler this way:\n```\nIf the mob/entity is found, this will return an IEntityDefinition Object.\...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Changed relative path names to absolute path names for the bracket handlers
139,045
13.09.2017 15:36:56
25,200
3546b7f241d04d9d1afc20cf044cc4de1af2c03d
Update Metallurgic_Infuser.md fixed table
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Mekanism/Metallurgic_Infuser.md", "new_path": "docs/Mods/Mekanism/Metallurgic_Infuser.md", "diff": "Infusion Type String\n------\nBoth addition and removal of recipes require an \"infusion type\" string. Default examples from Mekanism are:\n+\n| Infu...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Update Metallurgic_Infuser.md fixed table
139,045
14.09.2017 11:22:13
25,200
4e4f5f0f4123454fb780ab918bad6f9d009cc460
Typos and better gas definition hopefully gas is defined well enough
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Mekanism/Gas.md", "new_path": "docs/Mods/Mekanism/Gas.md", "diff": "@@ -4,17 +4,48 @@ Mekanism\nMekanism CraftTweaker support has been integrated directly into Mekanism now ([link](https://github.com/aidancbrady/Mekanism/tree/master/src/main/java/mek...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Typos and better gas definition hopefully gas is defined well enough
139,045
14.09.2017 11:40:07
25,200
0c72ba02e47bf09e7fa40583a1f3c4df239ba595
add mek to mkdocs.yml
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -110,6 +110,26 @@ pages:\n- BioReactor: 'Mods/IndustrialForegoing/BioReactor.md'\n- Laser Drill: 'Mods/IndustrialForegoing/LaserDrill.md'\n- Sludge Refiner: 'Mods/IndustrialForegoing/SludgeRefiner.md'\n+ - Mek...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
add mek to mkdocs.yml
139,045
14.09.2017 11:55:53
25,200
9adb4560fad6f8c5d9d705b03ba36b3a3bdae37a
fixed copy+paste typos missing quote marks
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -111,25 +111,25 @@ pages:\n- Laser Drill: 'Mods/IndustrialForegoing/LaserDrill.md'\n- Sludge Refiner: 'Mods/IndustrialForegoing/SludgeRefiner.md'\n- Mekanism:\n- - Chemical Crystallizer: Mods/Mekanism/Chemical...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
fixed copy+paste typos missing quote marks
139,040
14.09.2017 21:51:44
-7,200
29ac1d1f2b47896a9b66bca1bed16ae8be5dd8e5
Made Gas entry better understandable I believe that way
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Mekanism/Gas.md", "new_path": "docs/Mods/Mekanism/Gas.md", "diff": "@@ -8,44 +8,37 @@ Mekanism adds bracket-handler support to define **gas** -- a special material st\n<gas:oxygen>\n<gas:water> *\n```\n-*Noting that <gas:water> is different from <liq...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Made Gas entry better understandable I believe that way
139,040
17.09.2017 15:05:48
-7,200
ad87fcf9d9794f8a17b90f9410d6552f03c5d9db
Started with TiConstruct Entries
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/Modtweaker/TConstruct/Alloying.md", "diff": "+# Alloying\n+\n+The `Alloy` package allows you to add or remove Alloy recipes.\n+\n+## Calling\n+You can call the Alloy package using `mods.tconstruct.Alloy`\n+\n+## Add Alloy Recipes\n+\n+...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Started with TiConstruct Entries
139,040
17.09.2017 15:06:08
-7,200
266382ab992cb28418b664783b1581c18c6af7aa
Started with Astral Sorcery
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/Astral_Sorcery/Altar.md", "diff": "+# Altar Crafting\n+You can add and remove crafting recipes from the AS Altar.\n+\n+\n+## Calling\n+You can call the AltarRecipe package using `mods.astralsorcery.Altar`.\n+\n+\n+## Altar Levels\n+Som...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Started with Astral Sorcery
139,040
17.09.2017 15:55:39
-7,200
d4a0795d6a8fe7ed9c1813bdef0e59f5dab79b78
More work on Astral Sorcery
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Astral_Sorcery/Altar.md", "new_path": "docs/Mods/Astral_Sorcery/Altar.md", "diff": "@@ -11,9 +11,9 @@ Some recipes require an altar level:\n|Altar Level | Level Name |\n|------------|------------------------|\n-|0 |Luminous Crafting Table |\n-|1 |Sta...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
More work on Astral Sorcery
139,033
18.09.2017 15:02:10
14,400
ab98e6d05387b0b3911ee6ca54922b92ef942749
Fix current documentation for script location
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/WalkThrough.md", "new_path": "docs/Mods/ContentTweaker/WalkThrough.md", "diff": "## After Install\nFirst things first, before starting to create Blocks and such, it is suggested you run Minecraft at least once with\n-ContentTweaker ins...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Fix current documentation for script location
139,040
19.09.2017 20:36:19
-7,200
119e2bd5327efad0913af0c326352d9c4820bf42
Item_Transformers update
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Items/Item_Transformers.md", "new_path": "docs/Vanilla/Items/Item_Transformers.md", "diff": "@@ -7,10 +7,7 @@ This can range from damaging the item up to returning a completely different ite\nval item = <minecraft:apple>;\n-//Item won't be consume...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Item_Transformers update https://github.com/jaredlll08/CraftTweaker/issues/321
139,040
19.09.2017 20:37:21
-7,200
de02df8c4ad586b109550bcfaa0f5d92180c1fbc
Astral Sorcery Altar Images
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Astral_Sorcery/Altar.md", "new_path": "docs/Mods/Astral_Sorcery/Altar.md", "diff": "@@ -23,7 +23,7 @@ If there are multiple recipes that return the provided output, you need to call\n```JAVA\n//mods.astralsorcery.Altar.removeAltarRecipe(IItemStack ou...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Astral Sorcery Altar Images
139,040
24.09.2017 17:48:09
-7,200
1ef6ffdc4056a80883f24d4f7209b537c6aab3d1
Some ContentTweaker documentation. Probably...
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Vanilla/Creatable_Content/Block.md", "new_path": "docs/Mods/ContentTweaker/Vanilla/Creatable_Content/Block.md", "diff": "@@ -6,7 +6,7 @@ Required Fields will never have a default value, empty defaults means null.\nAll Fields can be set...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Some ContentTweaker documentation. Probably...
139,040
24.09.2017 18:16:43
-7,200
085f7d6a4f03a515a3c2789ac34a466d741deb70
Forestry Integration Changes
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Modtweaker/Forestry/Squeezer.md", "new_path": "docs/Mods/Modtweaker/Forestry/Squeezer.md", "diff": "@@ -8,7 +8,7 @@ You can call the package using `mods.forestry.Squeezer`\n## Recipe Removal\n```JAVA\n-//mods.forestry.Squeezer.removeRecipe(IIngredien...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Forestry Integration Changes
139,040
26.09.2017 19:10:00
-7,200
fcbd2dcc259591e6ce3479278685609da2887d88
Added info that scripts need to be on client and server
[ { "change_type": "MODIFY", "old_path": "docs/Getting_Started.md", "new_path": "docs/Getting_Started.md", "diff": "@@ -13,7 +13,7 @@ In addition to the core functionality provided to support Vanilla minecraft, mod\n## Scripts\n-Scripts are stored in `<minecraftdir>/scripts` and are loaded in the `Pre...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Added info that scripts need to be on client and server
139,040
26.09.2017 19:11:43
-7,200
7cec286f610656ecd7c7dd83e27111d6372e97d1
Some ContentTweaker stuff
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Vanilla/Brackets/Bracket_Block_Material.md", "new_path": "docs/Mods/ContentTweaker/Vanilla/Brackets/Bracket_Block_Material.md", "diff": "+# Block Material Bracket Handler\n+\n+\n+The Block Material Bracket Handler gives you access to t...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Some ContentTweaker stuff
139,040
26.09.2017 19:18:30
-7,200
595b1d921b94e609acc471192fa541c1f2c5c4aa
Is RTD really that picky?
[ { "change_type": "MODIFY", "old_path": "mkdocs.yml", "new_path": "mkdocs.yml", "diff": "@@ -101,14 +101,14 @@ pages:\n- IItemRightClick: 'Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/IItemRightClick.md'\n- Types:\n- Block:\n- - ICTBlockState: 'Mods/Contenttweaker/Vanilla/Types/Block/...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Is RTD really that picky?
139,040
26.09.2017 21:44:01
-7,200
35a03a270418b8671b99e15eaab23ac55d6ffb9e
Even more ContentTweaker Most of the vanilla module should be covered now
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Vanilla/Brackets/Bracket_Block_Material.md", "new_path": "docs/Mods/ContentTweaker/Vanilla/Brackets/Bracket_Block_Material.md", "diff": "@@ -42,7 +42,7 @@ Currently the only Block Materials supported are:\n</ul>\n</details>\n-Block Mat...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Even more ContentTweaker Most of the vanilla module should be covered now
139,040
30.09.2017 13:54:45
-7,200
8499b178c3f2a057771e1de1bf0bf3bc0e0d871e
Updated dumpzs info
[ { "change_type": "MODIFY", "old_path": "docs/Vanilla/Commands.md", "new_path": "docs/Vanilla/Commands.md", "diff": "@@ -99,13 +99,16 @@ Opens your browser with a link to the Discord server.\nUsage:\n`/craftweaker dumpzs`\n+`/craftweaker dumpzs PATH`\n`/ct dumpzs`\n+`/ct dumpzs PATH`\nDescription:\n-...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Updated dumpzs info
139,040
01.10.2017 10:18:42
-7,200
a1f3f8148bea84d8a5d1f48eb690af194c0964e5
Contenttweaker Fluids
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/ContentTweaker/Vanilla/Creatable_Content/Fluid.md", "diff": "+# Fluid\n+\n+This allows you to add fluids to the game!\n+\n+## Create the Fluid Representation\n+Before you can add the fluid, you need to create a Fluid Representation whi...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Contenttweaker Fluids
139,040
04.10.2017 19:11:28
-7,200
e17b5d067f4db5ac35b6d62af3b614394929b252
Starting with ContentTweaker's Material System
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/ContentTweaker/Materials/Materials/Material.md", "diff": "+# Material\n+\n+A Material is what an item is made of, for example Platinum.\n+\n+## Importing the package\n+It might be required for you to import the package if you encounter...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Starting with ContentTweaker's Material System
139,040
05.10.2017 20:59:58
-7,200
3cc676b0883932e8b37852b0cb4e478e9bb066aa
Some more CoT Material System, still WIP
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Materials/Materials/Material.md", "new_path": "docs/Mods/ContentTweaker/Materials/Materials/Material.md", "diff": "@@ -7,7 +7,7 @@ It might be required for you to import the package if you encounter any issues,\n`import mods.contenttwe...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Some more CoT Material System, still WIP
139,040
05.10.2017 22:14:15
-7,200
8e56ae853c59535b22c4a7730532450d51ffa5d9
Latest CoT commits and some more CoT material system
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/Mods/ContentTweaker/Commands.md", "diff": "+# Commands\n+\n+ContentTweaker extends the command palette provided by CraftTweaker.\n+To access these commands you do the same as you do for CraftTweaker commands, you use the `/crafttweaker` pre...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Latest CoT commits and some more CoT material system
139,040
09.10.2017 13:36:07
-7,200
b5163d8a6d3ee167fa5923d79155dd35aafc7d0b
More CoT Material Part
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Materials/MaterialSystem.md", "new_path": "docs/Mods/ContentTweaker/Materials/MaterialSystem.md", "diff": "@@ -30,7 +30,7 @@ For a list of all available part types check [the part type page](PartType).\n## [IMaterial](/Mods/ContentTwea...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
More CoT Material Part
139,040
09.10.2017 13:45:53
-7,200
c4a3430b902edfa1670d106f5ee5ce60895260a4
Moved Mekansim entry
[ { "change_type": "MODIFY", "old_path": "docs/Mods/Mekanism/Gas.md", "new_path": "docs/Mods/Mekanism/Gas.md", "diff": "@@ -3,7 +3,7 @@ Mekanism\nMekanism CraftTweaker support has been integrated directly into Mekanism now ([link](https://github.com/aidancbrady/Mekanism/tree/master/src/main/java/mekan...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Moved Mekansim entry
139,040
09.10.2017 13:57:54
-7,200
c16a8bd90b54a324618cab463b7a779df9a3c502
Small mix-up :smile:
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Materials/Materials/MaterialPartData.md", "new_path": "docs/Mods/ContentTweaker/Materials/Materials/MaterialPartData.md", "diff": "@@ -26,10 +26,10 @@ Below you will find a list for CoT's basic Part Types:\n<th>Name</th><th>Value</th><...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Small mix-up :smile:
139,040
09.10.2017 20:23:08
-7,200
ec259375ce04e1cd8828f4e89f935e54a7d80535
CoT's updates
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Materials/Materials/MaterialPart.md", "new_path": "docs/Mods/ContentTweaker/Materials/Materials/MaterialPart.md", "diff": "@@ -13,11 +13,13 @@ Single Object:\n- Using the [Material Part Bracket Handler](/Mods/ContentTweaker/Materials/B...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
CoT's updates
139,040
09.10.2017 21:21:08
-7,200
93256e1f1ab71600da13379f0622590fffc7451b
Guess I can't count after all...
[ { "change_type": "MODIFY", "old_path": "docs/Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/ActionResult.md", "new_path": "docs/Mods/ContentTweaker/Vanilla/Advanced_Functionality/Functions/ActionResult.md", "diff": "@@ -7,7 +7,7 @@ It might be required for you to import the package if ...
TypeScript
MIT License
crafttweaker/crafttweaker-documentation
Guess I can't count after all...