Skip to content

Commit

Permalink
Final fiddling before rewrite branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Pulverizer committed May 21, 2019
1 parent e0734b3 commit 9779062
Show file tree
Hide file tree
Showing 12 changed files with 101 additions and 206 deletions.
Binary file modified .gradle/4.4/fileContent/fileContent.lock
Binary file not shown.
Binary file modified .gradle/4.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/4.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/4.4/taskHistory/taskHistory.bin
Binary file not shown.
Binary file modified .gradle/4.4/taskHistory/taskHistory.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
141 changes: 71 additions & 70 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified build/libs/movecraft-0.0.1.jar
Binary file not shown.
17 changes: 14 additions & 3 deletions build/resources/main/mcmod.info
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
[
{
"modid": "movecraft",
"name": "movecraft",
"version": "0.0.1",
"description": "Movecraft for Sponge"
"name": "Movecraft for Sponge",
"version": "0.1.0",
"description": "Allows players to create moving things out of blocks. Airships, Defensive Turrets, Submarines, Etc.",
"url": "https://github.com/Pulverizer/Movecraft-for-Sponge",
"authorList": [
"BernardisGood",
"https://github.com/Pulverizer/Movecraft-for-Sponge/graphs/contributors"
],
"dependencies": [
"[email protected]"
],
"requiredMods": [
"[email protected]"
]
}
]
17 changes: 14 additions & 3 deletions build/tmp/generateMetadata/mcmod.info
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
[
{
"modid": "movecraft",
"name": "movecraft",
"version": "0.0.1",
"description": "Movecraft for Sponge"
"name": "Movecraft for Sponge",
"version": "0.1.0",
"description": "Allows players to create moving things out of blocks. Airships, Defensive Turrets, Submarines, Etc.",
"url": "https://github.com/Pulverizer/Movecraft-for-Sponge",
"authorList": [
"BernardisGood",
"https://github.com/Pulverizer/Movecraft-for-Sponge/graphs/contributors"
],
"dependencies": [
"[email protected]"
],
"requiredMods": [
"[email protected]"
]
}
]
6 changes: 0 additions & 6 deletions src/main/java/io/github/pulverizer/movecraft/craft/Craft.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class Craft {

protected World w;
private final AtomicBoolean processing = new AtomicBoolean();
private int maxHeightLimit;
private boolean cruising;
private boolean sinking;
private boolean disabled;
Expand Down Expand Up @@ -62,11 +61,6 @@ public Craft(CraftType type, World world) {
this.type = type;
this.w = world;
this.hitBox = new HashHitBox();
if (type.getMaxHeightLimit() > w.getDimension().getBuildHeight() - 1) {
this.maxHeightLimit = w.getDimension().getBuildHeight() - 1;
} else {
this.maxHeightLimit = type.getMaxHeightLimit();
}
this.pilotLocked = false;
this.pilotLockedX = 0.0;
this.pilotLockedY = 0.0;
Expand Down
Loading

0 comments on commit 9779062

Please sign in to comment.