Skip to content

Commit dc5886e

Browse files
authoredMay 2, 2023··
Update to Alpha9
# New things - Deterministic RNG - New Desync Monitoring with Seeds - Command `/playuntil <ticks>` # Changes - New networking module by Pancake - New ticksync - Changed the file extension from `.tas` to `.mctas` - Merged Monitoring files (.mon) and TASfiles (.mctas). - Added tick 0 to the TASfile when recording # Fixes - Fixed playing time failing to save - Fixed "player moved to quickly" during a savestate - Removed "catchup ticks" when the server is lagging
2 parents 7b2ad79 + 2de188e commit dc5886e

File tree

185 files changed

+4417
-2762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+4417
-2762
lines changed
 

‎.github/workflows/build.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This workflow will build a Java project with Gradle
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+
name: Build
5+
6+
on: [pull_request]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3.5.0
13+
- name: Set up JDK 8 for x64
14+
uses: actions/setup-java@v3
15+
with:
16+
java-version: '8'
17+
distribution: 'temurin'
18+
architecture: x64
19+
- name: Setup Gradle
20+
uses: gradle/gradle-build-action@v2.4.0
21+
with:
22+
gradle-version: 4.10.3
23+
- name: Build TASmod with Gradle
24+
run: gradle shadowJar
25+
- name: Upload artifact
26+
uses: actions/upload-artifact@v3
27+
with:
28+
name: TASmod-Dev-Build
29+
path: build/libs

‎.github/workflows/buildandupload.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# This workflow will build a Java project with Gradle
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+
name: Build and Upload to Discord
5+
6+
on: [push]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
if: github.repository == 'MinecraftTAS/TASmod'
12+
steps:
13+
- uses: actions/checkout@v3.5.0
14+
- name: Set up JDK 8 for x64
15+
uses: actions/setup-java@v3
16+
with:
17+
java-version: '8'
18+
distribution: 'temurin'
19+
architecture: x64
20+
- name: Setup Gradle
21+
uses: gradle/gradle-build-action@v2.4.0
22+
with:
23+
gradle-version: 4.10.3
24+
- name: Build TASmod with Gradle
25+
run: gradle shadowJar
26+
- name: Upload artifact
27+
uses: actions/upload-artifact@v3
28+
with:
29+
name: TASmod-Dev-Build
30+
path: build/libs
31+
- name: Send file to discord channel
32+
uses: sinshutu/upload-to-discord@master
33+
env:
34+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
35+
with:
36+
args: build/libs/TASmod-*.jar

0 commit comments

Comments
 (0)
Please sign in to comment.