@@ -10,60 +10,5 @@ const callback = (event: object) => {
10
10
world . sendMessage ( system . currentTick + ' - ' + event . constructor . name ) ;
11
11
} ;
12
12
13
- system . beforeEvents . watchdogTerminate . subscribe ( callback ) ;
14
13
system . afterEvents . scriptEventReceive . subscribe ( callback ) ;
15
14
16
- world . beforeEvents . chatSend . subscribe ( callback ) ;
17
- world . beforeEvents . dataDrivenEntityTriggerEvent . subscribe ( callback ) ;
18
- world . beforeEvents . explosion . subscribe ( callback ) ;
19
- world . beforeEvents . itemDefinitionEvent . subscribe ( callback ) ;
20
- world . beforeEvents . itemUse . subscribe ( callback ) ;
21
- world . beforeEvents . itemUseOn . subscribe ( callback ) ;
22
- world . beforeEvents . playerBreakBlock . subscribe ( callback ) ;
23
- world . beforeEvents . playerDimensionChange . subscribe ( callback ) ;
24
- world . beforeEvents . playerInteractWithBlock . subscribe ( callback ) ;
25
- world . beforeEvents . playerInteractWithEntity . subscribe ( callback ) ;
26
- world . beforeEvents . playerBreakBlock . subscribe ( callback ) ;
27
- world . beforeEvents . pistonActivate . subscribe ( callback ) ;
28
-
29
- world . afterEvents . playerBreakBlock . subscribe ( callback ) ;
30
- world . afterEvents . blockExplode . subscribe ( callback ) ;
31
- world . afterEvents . playerPlaceBlock . subscribe ( callback ) ;
32
- world . afterEvents . playerDimensionChange . subscribe ( callback ) ;
33
- world . afterEvents . playerInteractWithBlock . subscribe ( callback ) ;
34
- world . afterEvents . playerInteractWithEntity . subscribe ( callback ) ;
35
- world . afterEvents . buttonPush . subscribe ( callback ) ;
36
- world . afterEvents . chatSend . subscribe ( callback ) ;
37
- world . afterEvents . dataDrivenEntityTriggerEvent . subscribe ( callback ) ;
38
- world . afterEvents . effectAdd . subscribe ( callback ) ;
39
- world . afterEvents . entityDie . subscribe ( callback ) ;
40
- world . afterEvents . entityHealthChanged . subscribe ( callback ) ;
41
- world . afterEvents . entityHitBlock . subscribe ( callback ) ;
42
- world . afterEvents . entityHitEntity . subscribe ( callback ) ;
43
- world . afterEvents . entityHurt . subscribe ( callback ) ;
44
- world . afterEvents . entityRemove . subscribe ( callback )
45
- world . afterEvents . entitySpawn . subscribe ( callback ) ;
46
- world . afterEvents . explosion . subscribe ( callback ) ;
47
- world . afterEvents . itemCompleteUse . subscribe ( callback ) ;
48
- world . afterEvents . itemDefinitionEvent . subscribe ( callback ) ;
49
- world . afterEvents . itemReleaseUse . subscribe ( callback ) ;
50
- world . afterEvents . itemStartUse . subscribe ( callback )
51
- world . afterEvents . itemStartUseOn . subscribe ( callback ) ;
52
- world . afterEvents . itemStopUse . subscribe ( callback ) ;
53
- world . afterEvents . itemStopUseOn . subscribe ( callback ) ;
54
- world . afterEvents . itemUse . subscribe ( callback )
55
- world . afterEvents . itemUseOn . subscribe ( callback ) ;
56
- world . afterEvents . leverAction . subscribe ( callback ) ;
57
- world . afterEvents . messageReceive . subscribe ( callback ) ;
58
- world . afterEvents . pistonActivate . subscribe ( callback ) ;
59
- world . afterEvents . playerJoin . subscribe ( callback ) ;
60
- world . afterEvents . playerLeave . subscribe ( callback ) ;
61
- world . afterEvents . playerSpawn . subscribe ( callback ) ;
62
- world . afterEvents . pressurePlatePop . subscribe ( callback ) ;
63
- world . afterEvents . pressurePlatePush . subscribe ( callback ) ;
64
- world . afterEvents . projectileHitBlock . subscribe ( callback ) ;
65
- world . afterEvents . projectileHitEntity . subscribe ( callback ) ;
66
- world . afterEvents . targetBlockHit . subscribe ( callback ) ;
67
- world . afterEvents . tripWireTrip . subscribe ( callback ) ;
68
- world . afterEvents . weatherChange . subscribe ( callback ) ;
69
- world . afterEvents . worldInitialize . subscribe ( callback ) ;
0 commit comments