<freeStyleBuild _class='hudson.model.FreeStyleBuild'><action _class='hudson.model.CauseAction'><cause _class='hudson.triggers.SCMTrigger$SCMTriggerCause'><shortDescription>Started by an SCM change</shortDescription></cause></action><action></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><originmaster _class='hudson.plugins.git.util.Build'><buildNumber>531</buildNumber><marked><SHA1>b6d8e1fd315be14753a7fcbbc17bfbdf2bf9c085</SHA1><branch><SHA1>b6d8e1fd315be14753a7fcbbc17bfbdf2bf9c085</SHA1><name>origin/master</name></branch></marked><revision><SHA1>b6d8e1fd315be14753a7fcbbc17bfbdf2bf9c085</SHA1><branch><SHA1>b6d8e1fd315be14753a7fcbbc17bfbdf2bf9c085</SHA1><name>origin/master</name></branch></revision></originmaster><origingradle _class='hudson.plugins.git.util.Build'><buildNumber>113</buildNumber><marked><SHA1>04cc69b042305e85d9a8d35d7db86cd7e1512237</SHA1><branch><SHA1>04cc69b042305e85d9a8d35d7db86cd7e1512237</SHA1><name>origin/gradle</name></branch></marked><revision><SHA1>04cc69b042305e85d9a8d35d7db86cd7e1512237</SHA1><branch><SHA1>04cc69b042305e85d9a8d35d7db86cd7e1512237</SHA1><name>origin/gradle</name></branch></revision></origingradle><origin1.7 _class='hudson.plugins.git.util.Build'><buildNumber>299</buildNumber><marked><SHA1>3d7c89225bbf3a5e24a6ffe290dcbd67cdec022e</SHA1><branch><SHA1>3d7c89225bbf3a5e24a6ffe290dcbd67cdec022e</SHA1><name>origin/1.7</name></branch></marked><revision><SHA1>3d7c89225bbf3a5e24a6ffe290dcbd67cdec022e</SHA1><branch><SHA1>3d7c89225bbf3a5e24a6ffe290dcbd67cdec022e</SHA1><name>origin/1.7</name></branch></revision></origin1.7></buildsByBranchName><lastBuiltRevision><SHA1>b6d8e1fd315be14753a7fcbbc17bfbdf2bf9c085</SHA1><branch><SHA1>b6d8e1fd315be14753a7fcbbc17bfbdf2bf9c085</SHA1><name>origin/master</name></branch></lastBuiltRevision><remoteUrl>https://github.com/SlimeKnights/TinkersConstruct.git</remoteUrl><scmName></scmName></action><action _class='hudson.plugins.git.GitTagAction'></action><action></action><action></action><action></action><action></action><action></action><action _class='org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction'></action><building>false</building><displayName>#531</displayName><duration>215693</duration><estimatedDuration>123813</estimatedDuration><fullDisplayName>TConstruct_1.8.9 #531</fullDisplayName><id>2014-07-12_14-06-47</id><inProgress>false</inProgress><keepLog>false</keepLog><number>531</number><queueId>-1</queueId><result>SUCCESS</result><timestamp>1405188407000</timestamp><url>https://dvs1.progwml6.com/jenkins/view/all/job/TConstruct_1.8.9/531/</url><builtOn></builtOn><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/tconstruct/tools/gui/ToolStationGui.java</affectedPath><affectedPath>src/main/java/tconstruct/tools/gui/CraftingStationGui.java</affectedPath><commitId>d719885de738f0389c609da8303b146dc529d031</commitId><timestamp>1404741215000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Fixed some inconsistencies in how damage/speed of tools is calculated in GUIs
 * Fixed damage not being calculated properly in Crafting Stations
 * Fixed Crafting Stations stonebound speed calculations (they were using a different algorithm)
 * Fixed typo that made GUIs show the primary mining speed of dual harvest twice
 * Fixed Stonebound damage bonus/loss always being truncated to an int in GUIs

Conflicts:
	src/main/java/tconstruct/tools/gui/CraftingStationGui.java
	src/main/java/tconstruct/tools/gui/ToolStationGui.java
</comment><date>2014-07-07T06:53:35-0700</date><id>d719885de738f0389c609da8303b146dc529d031</id><msg>Fixed some inconsistencies in how damage/speed of tools is calculated in</msg><path><editType>edit</editType><file>src/main/java/tconstruct/tools/gui/ToolStationGui.java</file></path><path><editType>edit</editType><file>src/main/java/tconstruct/tools/gui/CraftingStationGui.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/tconstruct/tools/logic/FurnaceLogic.java</affectedPath><commitId>9b2784719b6846c017c092ce75544dbd7c0255fd</commitId><timestamp>1404741423000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Made slab furnaces accept items with the same restrictions as normal furnaces
 * Duplicated ISidedInventory implementation of TileEntityFurnace

Fixes SlimeKnights/TinkersConstruct#573

Conflicts:
	src/main/java/tconstruct/tools/logic/FurnaceLogic.java
</comment><date>2014-07-07T06:57:03-0700</date><id>9b2784719b6846c017c092ce75544dbd7c0255fd</id><msg>Made slab furnaces accept items with the same restrictions as normal</msg><path><editType>edit</editType><file>src/main/java/tconstruct/tools/logic/FurnaceLogic.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/tconstruct/smeltery/blocks/SearedBlock.java</affectedPath><commitId>8075cb0b9e8c7a8768c7940fcd1fd3d2d48625e7</commitId><timestamp>1404741470000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Safer tile entity casting in SearedBlock.getCollisionBoundingBoxFromPool

Fixes SlimeKnights/TinkersConstruct#586 and SlimeKnights/TinkersConstruct#557

Conflicts:
	src/main/java/tconstruct/smeltery/blocks/SearedBlock.java
</comment><date>2014-07-07T06:57:50-0700</date><id>8075cb0b9e8c7a8768c7940fcd1fd3d2d48625e7</id><msg>Safer tile entity casting in SearedBlock.getCollisionBoundingBoxFromPool</msg><path><editType>edit</editType><file>src/main/java/tconstruct/smeltery/blocks/SearedBlock.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/tconstruct/modifiers/tools/ModRepair.java</affectedPath><commitId>4fce1a924e4394277fff34f8d55e627626960551</commitId><timestamp>1404741472000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Fixed repairing only working with the first 2 crafting slots (it will now work with any slot).

Fixes SlimeKnights/TinkersConstruct/#568
</comment><date>2014-07-07T06:57:52-0700</date><id>4fce1a924e4394277fff34f8d55e627626960551</id><msg>Fixed repairing only working with the first 2 crafting slots (it will</msg><path><editType>edit</editType><file>src/main/java/tconstruct/modifiers/tools/ModRepair.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/tconstruct/modifiers/tools/ModRepair.java</affectedPath><commitId>443757c28c8772788aedefe9f9f63a683cc69eb8</commitId><timestamp>1404741474000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Fixed multiple repairs being more effective than a single repair with the same amount of materials

Fixes SlimeKnights/TinkersConstruct#584
</comment><date>2014-07-07T06:57:54-0700</date><id>443757c28c8772788aedefe9f9f63a683cc69eb8</id><msg>Fixed multiple repairs being more effective than a single repair with</msg><path><editType>edit</editType><file>src/main/java/tconstruct/modifiers/tools/ModRepair.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>resources/assets/tinker/lang/en_US.lang</affectedPath><commitId>7afb01afb39d1bd12059176078c8369576df56b7</commitId><timestamp>1404742034000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Fixed the ammo tooltip damage string and give a name to placed frying pans

Conflicts:
	resources/assets/tinker/lang/en_US.lang
</comment><date>2014-07-07T07:07:14-0700</date><id>7afb01afb39d1bd12059176078c8369576df56b7</id><msg>Fixed the ammo tooltip damage string and give a name to placed frying</msg><path><editType>edit</editType><file>resources/assets/tinker/lang/en_US.lang</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>src/main/java/tconstruct/tools/logic/FurnaceLogic.java</affectedPath><affectedPath>src/main/java/tconstruct/smeltery/blocks/SearedBlock.java</affectedPath><commitId>4a8ca08facd2b2d69b5a02e5eff20f7142f8d7d9</commitId><timestamp>1404742607000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></author><authorEmail>squeek502@hotmail.com</authorEmail><comment>Compile fixes for 1.7.10
</comment><date>2014-07-07T07:16:47-0700</date><id>4a8ca08facd2b2d69b5a02e5eff20f7142f8d7d9</id><msg>Compile fixes for 1.7.10</msg><path><editType>edit</editType><file>src/main/java/tconstruct/tools/logic/FurnaceLogic.java</file></path><path><editType>edit</editType><file>src/main/java/tconstruct/smeltery/blocks/SearedBlock.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>returning_eventually/plugins/waila/WailaRegistrar.java</affectedPath><affectedPath>src/main/java/tconstruct/smeltery/gui/SmelteryGui.java</affectedPath><affectedPath>resources/assets/tinker/lang/it_IT.lang</affectedPath><affectedPath>resources/assets/tinker/lang/en_US.lang</affectedPath><commitId>46fbe049207ce300c5b107b9bde8c3aa94d5a8b1</commitId><timestamp>1404977011000</timestamp><author><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/jeanglassmaker</absoluteUrl><fullName>JeanGlassmaker</fullName></author><authorEmail>JeanGlassmaker@mail.com</authorEmail><comment>Fixed Localizations in Smeltery Tooltip and WAILA
</comment><date>2014-07-10T10:23:31+0300</date><id>46fbe049207ce300c5b107b9bde8c3aa94d5a8b1</id><msg>Fixed Localizations in Smeltery Tooltip and WAILA</msg><path><editType>edit</editType><file>resources/assets/tinker/lang/en_US.lang</file></path><path><editType>edit</editType><file>returning_eventually/plugins/waila/WailaRegistrar.java</file></path><path><editType>edit</editType><file>src/main/java/tconstruct/smeltery/gui/SmelteryGui.java</file></path><path><editType>edit</editType><file>resources/assets/tinker/lang/it_IT.lang</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/jeanglassmaker</absoluteUrl><fullName>JeanGlassmaker</fullName></culprit><culprit><absoluteUrl>https://dvs1.progwml6.com/jenkins/user/squeek502</absoluteUrl><fullName>squeek502</fullName></culprit></freeStyleBuild>