1
- package eu .ha3 .matmos .game .system ;
1
+ package eu .ha3 .matmos .game .mod ;
2
2
3
3
import com .google .common .base .Optional ;
4
4
import eu .ha3 .easy .StopWatchStatistic ;
5
5
import eu .ha3 .easy .TimeStatistic ;
6
6
import eu .ha3 .matmos .expansions .Expansion ;
7
7
import eu .ha3 .matmos .expansions .Stable ;
8
8
import eu .ha3 .matmos .expansions .volume .VolumeUpdatable ;
9
+ import eu .ha3 .matmos .game .system .MAtmosUtility ;
10
+ import eu .ha3 .matmos .game .system .Simulacrum ;
11
+ import eu .ha3 .matmos .game .system .SoundAccessor ;
9
12
import eu .ha3 .matmos .game .user .UserControl ;
10
13
import eu .ha3 .matmos .game .user .VisualDebugger ;
11
14
import eu .ha3 .matmos .log .MAtLog ;
19
22
import eu .ha3 .mc .haddon .supporting .SupportsTickEvents ;
20
23
import eu .ha3 .mc .quick .chat .Chatter ;
21
24
import eu .ha3 .mc .quick .update .NotifiableHaddon ;
22
- import eu .ha3 .mc .quick .update .UpdateNotifier ;
23
25
import eu .ha3 .util .property .simple .ConfigProperty ;
24
26
import net .minecraft .client .Minecraft ;
25
27
import net .minecraft .util .SoundCategory ;
@@ -43,16 +45,16 @@ public class MAtMod extends HaddonImpl implements SupportsFrameEvents, SupportsT
43
45
private static final boolean _COMPILE_IS_UNSTABLE = true ;
44
46
45
47
// Identity
46
- protected final String NAME = "MAtmos-UnofficialBeta " ;
47
- protected final int VERSION = 30 ;
48
- protected final String FOR = "1.9 " ;
48
+ protected final String NAME = "MAtmos" ;
49
+ protected final int VERSION = 32 ;
50
+ protected final String FOR = "1.10 " ;
49
51
protected final String ADDRESS = "http://matmos.ha3.eu" ;
50
- protected final Identity identity = new HaddonIdentity (this . NAME , this . VERSION , this . FOR , this . ADDRESS );
52
+ protected final Identity identity = new HaddonIdentity (NAME , VERSION , FOR , ADDRESS );
51
53
52
54
// NotifiableHaddon and UpdateNotifier
53
55
private final ConfigProperty config = new ConfigProperty ();
54
56
private final Chatter chatter = new Chatter (this , "<MAtmos> " );
55
- private final UpdateNotifier updateNotifier = new UpdateNotifier (this , "http://q.mc.ha3.eu/query/matmos-main-version-vn.json?ver=%d" );
57
+ // private final UpdateNotifier updateNotifier = new UpdateNotifier(this, "http://q.mc.ha3.eu/query/matmos-main-version-vn.json?ver=%d");
56
58
57
59
// State
58
60
private boolean isListenerInstalled ;
@@ -93,7 +95,7 @@ public void onLoad()
93
95
this .userControl = new UserControl (this );
94
96
95
97
// Create default configuration
96
- this .updateNotifier .fillDefaults (this .config );
98
+ // this.updateNotifier.fillDefaults(this.config);
97
99
this .config .setProperty ("world.height" , 256 );
98
100
this .config .setProperty ("dump.sheets.enabled" , false );
99
101
this .config .setProperty ("start.enabled" , true );
@@ -124,7 +126,7 @@ public void onLoad()
124
126
125
127
resetAmbientVolume ();
126
128
127
- this .updateNotifier .loadConfig (this .config );
129
+ // this.updateNotifier.loadConfig(this.config);
128
130
129
131
// This registers stuff to Minecraft (key bindings...)
130
132
this .userControl .load ();
@@ -271,7 +273,7 @@ public void onTick()
271
273
{
272
274
this .hasFirstTickPassed = true ;
273
275
274
- this .updateNotifier .attempt ();
276
+ // this.updateNotifier.attempt();
275
277
276
278
if (MAtMod ._COMPILE_IS_UNSTABLE )
277
279
{
0 commit comments