File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed
src/main/java/com/ishland/fabric/rsls/mixin Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ forge_version=21.11.0-beta
1212yarn_mappings_patch_neoforge_version =1.21+build.4
1313
1414# Mod Properties
15- mod_version = 1.1.12
15+ mod_version = 1.1.13
1616maven_group = com.ishland
1717archives_base_name = rsls-neoforge
Original file line number Diff line number Diff line change 99@ Mixin (SoundExecutor .class )
1010public abstract class MixinSoundExecutor extends ThreadExecutor <Runnable > {
1111
12- @ Shadow private volatile boolean stopped ;
13-
14- @ Shadow private Thread thread ;
15-
1612 protected MixinSoundExecutor (String name ) {
1713 super (name );
1814 }
1915
16+ @ Override
17+ public boolean runTask () {
18+ synchronized (this ) {
19+ return super .runTask ();
20+ }
21+ }
22+
23+ @ Override
24+ protected void cancelTasks () {
25+ synchronized (this ) {
26+ super .cancelTasks ();
27+ }
28+ }
29+
2030}
You can’t perform that action at this time.
0 commit comments