Skip to content

Commit

Permalink
git commit from PowerShell in C#JecsTools The wall placeworker now al…
Browse files Browse the repository at this point in the history
…so allows other types of walls.
  • Loading branch information
jecrell committed Oct 2, 2018
1 parent becd995 commit 24874cf
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 14 deletions.
16 changes: 13 additions & 3 deletions About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<author>jecrell</author>
<url>https://discord.gg/AaVFA7V</url>
<targetVersion>0.19.0</targetVersion>
<description>1.1.0.6 (09-30-2018)
<description>1.1.0.7 (10-02-2018)

Adds modding components to RimWorld: vehicles, spell casting, weapon slots, oversized weapons, and more!

Expand Down Expand Up @@ -54,9 +54,19 @@ Additions and transpilers by Erdelf
Extensive hours of testing, debugging, and fixes by Xen.
"Hey, should we make this into a public toolset for people to take advantage of all this cool stuff?" - Jecrell
"Hell yes - this is awesome stuff - people will love it!" - Xen
===================

Thank you to my Patrons for supporting me in my efforts. Without you, none of this would be possible.

These are the most excellent rim dwellers who support me:
Brachiaraidos, Cory Bonifay, CrankyPeanut, E_T, Finwej, Jan Koutsky, Jonathan, K. Bolden, Kiya Nicoll, Matt Harris, Paul Fenwick, Toc Anastar, Grendalloffen, Martin K. Bonde, Harvey Mclellan, Shane M. aka ShotgunFace, Bentley Alsup, Eric Idema, MasterScootie, GoSu, Josh McCabe, spook, Clifford Campbell, J, Michael Paugh, John Kanady, Luis Figueroa, Midgeman, Nate Haug, Richard Paul, SilentWeirdo, Audrin Navarro, Calhoun Cattell, Михаил Юрченко, Nemuri Hime, Calum, Keith Thoma, Dick Jones, Patrick, Tim Stillson, Nathan Getman, Sharp Spook, Emily Shaw, Populous25, Steven James, Zalson, Mark, Marcus Sireanu, Drachken, Nicholas Bateman, Baron Xot, Justin Andres, Luis Salvatierra, Christopher, TinyFloatingTurtle, George Chong Chuang Ming, John Boehr, Oliver White, roxxploxx, Robin Hager, That Guy, Allic, Karol Rybak, Austin Harbert, Yewty, Evan Hwang, Ryan Brock, Jonathan Holzinger, MC, Alexander, Alex Mederer, Kevin Reagan, Toss Antilles, Chelsea Archambeau, Aron Glasser, Dan Winn, Fredric Sundberg, Sarah Banks, ted stevens

========================
Changelog
===================
========================
1.1.0.7 (10-02-2018)
========================
The wall placeworker now also allows other types of walls.

1.1.0.6 (09-30-2018)
===================
Adds new BuildingExtension class to allow for bypasses to SpawningWipes. Perfect for adding furniture on top of existing tables.
Expand Down
4 changes: 4 additions & 0 deletions About/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.1.0.7 (10-02-2018)
========================
The wall placeworker now also allows other types of walls.

1.1.0.6 (09-30-2018)
===================
Adds new BuildingExtension class to allow for bypasses to SpawningWipes. Perfect for adding furniture on top of existing tables.
Expand Down
2 changes: 1 addition & 1 deletion About/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0.6
1.1.0.7
Binary file modified Assemblies/0JecsTools.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ public override AcceptanceReport AllowsPlacing(BuildableDef checkingDef, IntVec3
Thing thingToIgnore = null)
{
if (loc.GetThingList(map).FirstOrDefault(x =>
x.def.blockWind && x.def.coversFloor && x.def.holdsRoof && x.def.building is BuildingProperties b &&
b.isInert) == null)
return new AcceptanceReport("JT_PlaceWorker_OnTopOfWalls".Translate());
return true;
x.def.defName.Contains("Wall")) != null)
return true;
return new AcceptanceReport("JT_PlaceWorker_OnTopOfWalls".Translate());
}
}
}
12 changes: 6 additions & 6 deletions updateinfo
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

JecsTools Update
====================
Version: 1.1.0.5
Updated: 09-22-2018
Description: Added a max range check to make GetInRangeToil fire for pawns who target enemies outside of max range.
Version: 1.1.0.6
Updated: 09-30-2018
Description: Adds new BuildingExtension class to allow for bypasses to SpawningWipes. Perfect for adding furniture on top of existing tables.
====================

Download now on...
Expand All @@ -25,9 +25,9 @@ Discuss the mod on...
[img width=260]https://raw.githubusercontent.com/jecrell/JecsTools/master/About/Preview.png[/img]
[hr]
[b]JecsTools
Version: 1.1.0.5
Updated: 09-22-2018
Description: [color=orange]Added a max range check to make GetInRangeToil fire for pawns who target enemies outside of max range.[/color]
Version: 1.1.0.6
Updated: 09-30-2018
Description: [color=orange]Adds new BuildingExtension class to allow for bypasses to SpawningWipes. Perfect for adding furniture on top of existing tables.[/color]
[hr]
[b]Download now on...[/b]
[url=https://www.patreon.com/posts/jecstools-for-0-21059900]Patreon[/url]
Expand Down

0 comments on commit 24874cf

Please sign in to comment.