forked from ESCALATION-ROCKS/Escalation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
exit
1816 lines (1203 loc) · 56 KB
/
exit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mcommit 2dce875decfb35d7d48f33df1652c0c2e75607b2[m[33m ([m[1;31mendel/master[m[33m)[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:27:06 2020 +0300
Revert "Update projectile.dm"
This reverts commit f254abad32db24eb7813cd8c481af601dc56a258.
[33mcommit 8845b381aa9e32732d325d145b4903e3233e97b7[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:26:55 2020 +0300
Revert "Update icons.dm"
This reverts commit 0ec740c171623a46ff0a6c87712d280f30a925b7.
[33mcommit c718fe959bc514b01b76471c006530ddeb90bbe1[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:22:26 2020 +0300
Revert "Update beach.dm"
This reverts commit 4f5395211c6d38528ab11a016fe7d5ac2385f095.
[33mcommit ce6d21eb0c8c83bac6c7ba68552608483f4ebbb9[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:22:25 2020 +0300
Revert "Update wall_types.dm"
This reverts commit b377106df2ce61e9e44eace2ee72a22e2c1aeb20.
[33mcommit 8c97dbd4c9a83e097261ac53477c95eb5013e91c[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:22:24 2020 +0300
Revert "Update flooring.dm"
This reverts commit 3952b0840c5a6d7256f7106f381219c5d55cfafd.
[33mcommit 5d34379ddb8ba8a7af3ee38619928c164e30cef1[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:38 2020 +0300
Revert "Update math_physics.dm"
This reverts commit c2efd6e9a6288f3771a2eaf11c11e05cbbd0a1b6.
[33mcommit 6e0b3bdcdcabcbddb3a2bdb3ffaad10e6b9c737a[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:36 2020 +0300
Revert "Update click.dm"
This reverts commit 99f280e600790328590998ac66fda8b0b4fed300.
[33mcommit 2c1d12bee0965c244ff3cae7c82be0efebb83e14[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:35 2020 +0300
Revert "Update components.dm"
This reverts commit f51d97ae1ddf2346e91f447aa8df126c4c307805.
[33mcommit 27a23b583a1f03c889284381f48cd02b3621a12b[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:32 2020 +0300
Revert "Update misc.dm"
This reverts commit a74f29af5b91338bc16e533158c57a5b241aaf5c.
[33mcommit 8e711fe5cd38f41e9c977dd4a46200394aa2fb29[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:30 2020 +0300
Revert "Update unsorted.dm"
This reverts commit 06350aecf526fb2540bef2a8a9b98b6aeedd69a9.
[33mcommit 1bd5708f7f7fbc2a182f1e2660e73b4a0a597fb3[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:28 2020 +0300
Revert "Update icons.dm"
This reverts commit 69c797e843f3d350dc8c485312539a7fce0e5ff5.
[33mcommit 0f135c838db789c366d5bf44b3ae0fc146672b49[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:21:27 2020 +0300
Revert "Projectile code upgrade"
This reverts commit 2d4c09505821d1711476ca4be6210c1c61c2133b.
[33mcommit 83daed321f6d0a98b8e241608b569f756452c4b2[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:20:42 2020 +0300
Revert "Update subsystems.dm"
This reverts commit 8bbf15bd7d6821973d1e1e0d1039f4c2267b180b.
[33mcommit 5203a65e4c2d9fe9250a8d53759047c072483849[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:20:41 2020 +0300
Revert "Update subsystems.dm"
This reverts commit 0a10141ac7c38fa4d157ab5f9367f51bf91909f2.
[33mcommit 6dcd51ae12a8e401c4e62d18f07db886653bf3dd[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:20:37 2020 +0300
Revert "Update preferences.dm"
This reverts commit 8679aff25387eba4c50f079ba9098fd388dbb871.
[33mcommit 366cd4defeda232855101c2c795267fb26b921c3[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:20:35 2020 +0300
Revert "Update preferences.dm"
This reverts commit 8e97b5475fd7abdb0c7d2193d4ad30a56577b1ff.
[33mcommit a2b35ab795b37a2314db436e4f122d20b6a75475[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:20:34 2020 +0300
Revert "Update preferences.dm"
This reverts commit 6b07744208a2a847c44a0bab2c875d20821ee0e6.
[33mcommit 376d95a1a3574fe50a748bf09b0ef2436be9d56d[m
Author: SireTurret <[email protected]>
Date: Wed Apr 15 12:20:33 2020 +0300
Revert "Update preferences_savefile.dm"
This reverts commit 0ba85a4e8092d46e9fede113c92b2d7958ac0b3d.
[33mcommit 84f6a3b86e448a33f33f467c3a88968a3af24730[m
Author: butmun <[email protected]>
Date: Sun Apr 12 17:42:38 2020 +0200
Changes the discord invite link, again
[33mcommit 83c0d92bfa7468e64e5bc950a0a9724ad35f63de[m
Author: butmun <[email protected]>
Date: Sun Apr 12 02:01:47 2020 +0200
Changes the discord link
[33mcommit 0ba85a4e8092d46e9fede113c92b2d7958ac0b3d[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 22:18:12 2020 +0300
Update preferences_savefile.dm
[33mcommit 6b07744208a2a847c44a0bab2c875d20821ee0e6[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 22:12:20 2020 +0300
Update preferences.dm
[33mcommit 8e97b5475fd7abdb0c7d2193d4ad30a56577b1ff[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 22:10:52 2020 +0300
Update preferences.dm
[33mcommit 8679aff25387eba4c50f079ba9098fd388dbb871[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 20:41:08 2020 +0300
Update preferences.dm
[33mcommit 0a10141ac7c38fa4d157ab5f9367f51bf91909f2[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:48:07 2020 +0300
Update subsystems.dm
[33mcommit 8bbf15bd7d6821973d1e1e0d1039f4c2267b180b[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:46:41 2020 +0300
Update subsystems.dm
[33mcommit c2efd6e9a6288f3771a2eaf11c11e05cbbd0a1b6[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:31:45 2020 +0300
Update math_physics.dm
[33mcommit f254abad32db24eb7813cd8c481af601dc56a258[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:27:39 2020 +0300
Update projectile.dm
[33mcommit 99f280e600790328590998ac66fda8b0b4fed300[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:25:02 2020 +0300
Update click.dm
[33mcommit f51d97ae1ddf2346e91f447aa8df126c4c307805[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:24:04 2020 +0300
Update components.dm
[33mcommit a74f29af5b91338bc16e533158c57a5b241aaf5c[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:23:46 2020 +0300
Update misc.dm
[33mcommit 06350aecf526fb2540bef2a8a9b98b6aeedd69a9[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:22:36 2020 +0300
Update unsorted.dm
[33mcommit 69c797e843f3d350dc8c485312539a7fce0e5ff5[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:21:51 2020 +0300
Update icons.dm
[33mcommit 0ec740c171623a46ff0a6c87712d280f30a925b7[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:21:04 2020 +0300
Update icons.dm
[33mcommit 816b024484fe4b142253e790750dcb62d4f89858[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:19:05 2020 +0300
Update subsystems.dm
[33mcommit 2d4c09505821d1711476ca4be6210c1c61c2133b[m
Author: SireTurret <[email protected]>
Date: Sun Apr 5 17:08:06 2020 +0300
Projectile code upgrade
[33mcommit 3952b0840c5a6d7256f7106f381219c5d55cfafd[m
Author: SireTurret <[email protected]>
Date: Sat Apr 4 03:56:13 2020 +0300
Update flooring.dm
[33mcommit b377106df2ce61e9e44eace2ee72a22e2c1aeb20[m
Author: SireTurret <[email protected]>
Date: Sat Apr 4 03:30:22 2020 +0300
Update wall_types.dm
[33mcommit 4f5395211c6d38528ab11a016fe7d5ac2385f095[m
Author: SireTurret <[email protected]>
Date: Sat Apr 4 03:28:33 2020 +0300
Update beach.dm
[33mcommit cce7d6370788d4ff8a54b10831cbfc99c60bba9f[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 17:12:53 2020 +0300
Update living.dm
[33mcommit f0b21ee461a2726f2c836df9896e64fd05d271f3[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 15:30:45 2020 +0300
New radio chatter
[33mcommit 4ef6554fc7391c9c03420c9e9998eae7bed039f7[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 15:13:38 2020 +0300
federal cap
[33mcommit aceb01ca577e1c9c3789ebc2d3f9977b556b7927[m
Merge: 8d1dd6cb a6dd45ae
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:53:29 2020 +0300
Merge branch 'master' of https://github.com/butmun/InterHippie2
[33mcommit a6dd45ae16e6039cb390ef86d2a32fda83351dfa[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:46:25 2020 +0300
fixes darkmode bug
[33mcommit 8d1dd6cb08312cbbbba75d8235c8b66b2e8de34b[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:21:42 2020 +0300
Adds the federal uniform to the .dmi
Thanks to dannad.
[33mcommit 7efd0cfabb5617ccecdd9a529a9d8c0f4d37d5d8[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:12:30 2020 +0300
Update bloodpool.dm
[33mcommit 51c6af06b16a30094e21b95bc88d90f30dfec4e1[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:08:57 2020 +0300
Changes the fluff .png's to remove the NT logo.
[33mcommit f46481424c0bc81ddb0730832c279079ea40d68d[m
Merge: 84ecef65 5e7925d3
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:01:19 2020 +0300
Merge branch 'master' of https://github.com/butmun/InterHippie2
[33mcommit 84ecef65ab24e656634f9a140449e05f0df54896[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 14:00:53 2020 +0300
why didn't this commit wtf
[33mcommit 0122821586d0e22aa3161ce5dd3346a703bf0b8d[m
Author: HonkyDonky <[email protected]>
Date: Sun Mar 1 03:44:13 2020 +0300
Character Setup subsystem.
[33mcommit 5e7925d3aae0541e02410c2ec0733b26066934d2[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 13:55:16 2020 +0300
Typing_indicators could CRASH the server at any given moment.
This prevents them from crashing it by making it not delete twice.
The message clouds are fine, don't worry.
[33mcommit 50de4bc64b146caddc811ca96ca6da81e6dc3945[m
Author: HonkyDonky <[email protected]>
Date: Mon Mar 23 17:06:24 2020 +0300
tweak(IsBanned) предотвращаем спам фейковыми соединениями
[33mcommit b10c7ea00e7853ab85721d87a3eb441c054a40b7[m
Author: HonkyDonky <[email protected]>
Date: Wed Mar 25 16:14:04 2020 +0300
Proximity system
Wow, this actually improves performance a lot. I'm surprised. All credits go to OnyxBay, who in turn took it from tgstation.
[33mcommit 8bf0795f34d282c88b65a2c16f6bb9ede25b1c55[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 12:51:02 2020 +0300
Add it to the .dme
[33mcommit 6287b30a5219d6db9c81cb19208f95b8dfcd7362[m
Author: RomanZC <[email protected]>
Date: Wed Apr 1 01:06:43 2020 +0100
More fixes and changes
Surgery room completly changed, added a very needed light at chem lab, decorations changes at cargo and vacant office, shuttle actually has a lower part now.
[33mcommit e620ed2f6e98371639448d4d665eb44dd825390a[m
Author: SireTurret <[email protected]>
Date: Wed Apr 1 01:37:11 2020 +0300
DONE AND DUSTED WITH
[33mcommit 61eeea43c54e51bebb317d1aeb74d487e83d794d[m
Merge: 0f01d79a b728c451
Author: SireTurret <[email protected]>
Date: Wed Apr 1 01:36:26 2020 +0300
Merge branch 'master' of https://github.com/butmun/InterHippie2
[33mcommit b728c4518c09abcfdfe3a7be148de14137f8e0e2[m
Author: RomanZC <[email protected]>
Date: Tue Mar 31 23:36:01 2020 +0100
Removed maintain and issue coverage badges
We're abandoning Interpost, why this lol
[33mcommit f9f0db844de1893d1389d83a4a4ebefd474ce861[m
Author: croi900 <[email protected]>
Date: Wed Apr 1 01:02:45 2020 +0300
Blood pools (#181)
* bloodpool decal hopefully i dont mess up the repo
* blood pool handling code
[33mcommit c5012ff04d4e35a7d3f300dad312e4dd40092fcb[m
Author: RomanZC <[email protected]>
Date: Tue Mar 31 22:41:31 2020 +0100
I accidentally left a shutter in the hallway
Oops.
[33mcommit ea1aac97da0b9fa4a4aa374857aca6927f1849c2[m
Author: RomanZC <[email protected]>
Date: Sun Mar 29 23:24:19 2020 +0100
Updates
Numerous minor improvements and added shutters to medbay locker room.
[33mcommit 383fc053cf6e423c0d95c58f586390207a872837[m
Merge: 9c86b73f 2680607c
Author: Muncher2112 <[email protected]>
Date: Sun Mar 29 11:43:39 2020 -0400
Merge branch 'master' of https://github.com/butmun/Interpost-Hague
[33mcommit 9c86b73f2c839e4c535f8d4ce37306afe5e0c716[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 29 11:43:25 2020 -0400
Tweaks parrying to make attacking someone with a deadlier weapon more likely to knock weapons out of their hand
[33mcommit 2680607c73cec6e2a95f1d5c3885ac2fb2cfd1de[m
Author: SireTurret <[email protected]>
Date: Sat Mar 28 10:49:58 2020 +0300
Update life.dm
[33mcommit eff49ae0b9a4f00fae95931f02c3d0873a374769[m
Author: SireTurret <[email protected]>
Date: Sat Mar 28 10:49:47 2020 +0300
Update human_alt.dm
[33mcommit 74bd7fc2b19e5abd72a542fe3cd2c38417d6991b[m
Merge: 9f7e3157 72e6ff96
Author: Muncher2112 <[email protected]>
Date: Fri Mar 27 22:41:46 2020 -0400
Merge branch 'master' of https://github.com/butmun/Interpost-Hague
[33mcommit 9f7e3157303359f88a30b29f6855f5aba00eebf6[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 27 22:41:11 2020 -0400
Arbiter helmets get special death sounds
[33mcommit 72e6ff96a97949e596e64b87ba2827388fa9afea[m
Author: SireTurret <[email protected]>
Date: Fri Mar 27 17:27:02 2020 +0300
Update swords_axes_etc.dm
[33mcommit 03acf252ae5438fc34ea06e8e4ffed4a437654fa[m
Author: SireTurret <[email protected]>
Date: Fri Mar 27 17:06:02 2020 +0300
Update movietitles.dm
[33mcommit edbb1ab1ac7a461ca10ed291a215a2bac81d66cf[m
Author: SireTurret <[email protected]>
Date: Fri Mar 27 03:44:28 2020 +0300
Update movietitles.dm
[33mcommit 0564d503b470bf6320bee3a65835d942710783e7[m
Author: SireTurret <[email protected]>
Date: Fri Mar 27 03:41:30 2020 +0300
New end credits.
[33mcommit d176acaa1dba803662328b347d6ff2f51ed387f0[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 26 20:16:09 2020 -0400
Removes randomness from batons (close #176)
[33mcommit a7c2b3482f92831855bd1b4a6d7392848e5bbe4c[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 26 16:42:26 2020 -0400
Fixes #177
Close #177
[33mcommit 6b0c84cfd015c34115d1e77b21891ec7a2a82879[m
Author: butmun <[email protected]>
Date: Thu Mar 26 19:41:37 2020 +0100
removes more floating stuff
[33mcommit ac37a1e7c970f665d8c16058d02038ce7015dd70[m
Author: butmun <[email protected]>
Date: Thu Mar 26 19:30:48 2020 +0100
removes spawn outside of alpha station
thanks roman
[33mcommit 0f01d79aef1f880f81e6a19c8332856e0a5a5106[m
Author: SireTurret <[email protected]>
Date: Thu Mar 26 16:19:19 2020 +0300
Static changes.
[33mcommit 5e727206785b0046af719cf2ee0cf1962eeeaa1e[m
Author: SireTurret <[email protected]>
Date: Thu Mar 26 16:08:23 2020 +0300
Update life.dm
[33mcommit 7c422586d01d59a28c71756e4ac35d3334f786d2[m
Author: SireTurret <[email protected]>
Date: Thu Mar 26 16:05:57 2020 +0300
Once again, makes film grain better.
[33mcommit 06d80169f203f1c773c0f9c2006ae12ebbfc1f0d[m
Author: Muncher2112 <[email protected]>
Date: Tue Mar 24 21:06:48 2020 -0400
Fixes window building for full-tile stuff
[33mcommit 1d71d5bd1c40c1eed395922049c6909749d1d665[m
Author: RomanZC <[email protected]>
Date: Wed Mar 25 00:13:21 2020 +0000
Mapping fixes and library rehaul
Fixed windows at the bridge consoles, added a missing structure at Captain's office, made docking port slightly better, and completly new library.
[33mcommit 9b2c123a6de3a0f2231866ff9b548670a96771af[m
Author: Muncher2112 <[email protected]>
Date: Tue Mar 24 19:34:16 2020 -0400
Fixes the tiling issues hopefully
[33mcommit 29e58074f41a17ec7844d767818028ed9aecc321[m
Author: Muncher2112 <[email protected]>
Date: Tue Mar 24 17:32:35 2020 -0400
New window sprites
[33mcommit 77054f7a3cf1aa82b9ea6fe74b70f2aa03fb0230[m
Author: Muncher2112 <[email protected]>
Date: Mon Mar 23 23:16:36 2020 -0400
Double barrel sound effects
[33mcommit 94adb1ee78dae0660e2cb7db88874b34867edc05[m
Author: Muncher2112 <[email protected]>
Date: Mon Mar 23 22:54:50 2020 -0400
Moves rifle bullets to stacks
[33mcommit da59461ce6f315dd45bc26a8bf6b7be9ba00a318[m
Author: Muncher2112 <[email protected]>
Date: Mon Mar 23 20:10:02 2020 -0400
Fixes antag spawns once and for all (hopefully)
[33mcommit 6d871c862216c8333611fdfca738dba24cff3728[m
Author: Muncher2112 <[email protected]>
Date: Mon Mar 23 19:37:32 2020 -0400
Missed sound fixes
[33mcommit c0ef19b25d35fd3ad8fc3385c86cfbd5641ec683[m
Author: Matt <[email protected]>
Date: Sat Mar 21 14:56:17 2020 -0400
Sounds will play at their normal volume again.
[33mcommit 8b5da1e8955282594fa5be8519b54bb084a69630[m
Author: Matt <[email protected]>
Date: Fri Mar 20 17:45:45 2020 -0400
redoing multiz sound
# Conflicts:
# code/game/sound.dm
[33mcommit 82b046570bc5d7ba9b7632c48aca32a0db11919f[m
Author: Muncher2112 <[email protected]>
Date: Mon Mar 23 13:08:07 2020 -0400
Fixes #173 shitting yourself now leaves behind turds
[33mcommit 7474f0090bb0507393409562a6a39b5f61588fb8[m
Author: Muncher2112 <[email protected]>
Date: Mon Mar 23 12:55:44 2020 -0400
Fixes #174 and gives it a new sprite so the overlay doesn't increase hitbox size.
[33mcommit cc4e37f841065feef3a8f9a8113a943d7aec0add[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 22 17:24:32 2020 -0400
Brings back old-mosin
[33mcommit 2fc176caaa36cec568eabff8ff165c80ecea2db0[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 22 13:27:11 2020 -0400
I should really re-learn how to enable log_debug
[33mcommit cc50182e09604cc59ce9d38d94586f99110a366f[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 22 13:00:59 2020 -0400
Getting pushed no longer turns you around
[33mcommit d93b5792431b43a40081e91e7996b0dd90529f7b[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 22 10:43:34 2020 -0400
Updates floodlight icons (The spot for ugliest sprite in the codebase is now open)
[33mcommit c68f673e94ff1f1532a88514a1ee630248844a4a[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 22 00:04:20 2020 -0400
Commits these stupid map differences because GIT cares about them for some reason.
I hope it doesn't break anything
[33mcommit fc9e0b1ecabe4787e7693c7d7c0b91648f4f10a9[m
Author: Muncher2112 <[email protected]>
Date: Sun Mar 22 00:03:35 2020 -0400
Make nutrition loss slightly
[33mcommit 5f68ad56617e573eeff9492a774c98bad32a40b4[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 23:50:49 2020 -0400
Brings the rest of the shotgun shells up to speed with stacks.
[33mcommit a062ff72d0a977dda3f2447081f139a05a184da4[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 23:07:21 2020 -0400
Sawed-off 2-hand sprites
[33mcommit c00cd3f5b332aa5875117ecd70f4cdaa25c83778[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 22:43:29 2020 -0400
Stuff for stackable ammo (Only works for shotgun shell right now)
Fixes double barrel and gives it a new sprite
[33mcommit 8d2e3cf587d2f7f568ba455b6a946ab0ae68c150[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 18:53:10 2020 -0400
Better crowbar inhands (Thanks burgerstation)
[33mcommit 9c85a351cd4df9eb144d831f8b7ac95be8c848f6[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 16:40:18 2020 -0400
Make machine pistols actually need to be 2-handed
[33mcommit 3150ce7d78cf5bdc98c191b3444dba448615046b[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 16:39:05 2020 -0400
2-hand machine pistol sprites thanks to Mr.Pibb
[33mcommit 78e2628bcf60dd71ef15c2ccabe6541878be4010[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 15:44:27 2020 -0400
Adds an option to disable family joining. Close #142
No more body markings.
[33mcommit a97ae0f1a652a38c7ffde8ed85f7cfbf4e96e492[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 10:42:59 2020 -0400
Slight changes to dex stuff to do less math and make less decimal places
[33mcommit b04f87733fcc672d33991fd59bf9642ad370dd22[m
Author: croi900 <[email protected]>
Date: Sat Mar 21 14:54:53 2020 +0200
Some #149 changes I believe are worth it (#164)
* Makes soap throw the new meta.
* if this shows up on discord all of github staff are gay faggots
* negroman grab me by the hand take me to the land of the negro man
* Lat nig
* Last nig
* commit machine go brrrrrrrrrrrrrrrrrrrrrrrrrr
* Update matt_combat.dm
* Update soap.dm
* Update atoms.dm
* Update railing.dm
* Update atoms.dm
* Update matt_combat.dm
Co-authored-by: SireTurret <[email protected]>
[33mcommit 315122e3f01a5a9a14942e479b31a39c5c26cdd9[m
Author: Muncher2112 <[email protected]>
Date: Sat Mar 21 00:56:22 2020 -0400
More stuff for #115
Gave machine pistol a new sprite (thanks Discordia)
Unjaming a gun won't change your fire setting
[33mcommit 8b7216af10c332c8e37ef16aa0519e6bb3eb857a[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 23:21:56 2020 -0400
Adds a new Jes spell
Cleans up religion code a bit
[33mcommit 2d4022356c7cf1948d7e6f9d8b9e686afb357b86[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 20:02:04 2020 -0400
Removes many guns from traitor options, and makes heavy guns cost more in general.
Total tele crystals were reduced to 100.
[33mcommit 417483410e544d471b64b18f9c9bfe6252398e0d[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 18:51:40 2020 -0400
Does #149 for railings
[33mcommit 63b4d11d1a3af8602f0ef64204a58893c712be27[m
Merge: 6f4df68d f0c20006
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 18:45:39 2020 -0400
Merge branch 'master' of https://github.com/butmun/Interpost-Hague
[33mcommit 6f4df68d9dfdadf4626982a03b678ed911e595ca[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 18:45:00 2020 -0400
Makes climbs on tables and getting up faster based on DX
Changes config to make merc + heist happen less
[33mcommit f0c20006decdf665e9126a28cc696aa705466d85[m
Author: butmun <[email protected]>
Date: Fri Mar 20 23:44:49 2020 +0100
added AK-84 magazine sprites
AK-84 magazine sprites made by me!!!!!!!!! : )
[33mcommit 3c89a77e02b1e14211a49cc3837a100fbcc7ea33[m
Author: butmun <[email protected]>
Date: Fri Mar 20 23:10:43 2020 +0100
added AK-84 sprites
AK-84 sprites made by me!!!
[33mcommit 7fee89cc88a67bcef36e6b0af2df922389d8cd32[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 15:38:41 2020 -0400
Removes family debug because they appear to be working
[33mcommit b0efd48aa3ab90ec271aafde185cff2fd52d5f3a[m
Author: Muncher2112 <[email protected]>
Date: Fri Mar 20 12:22:51 2020 -0400
Fixes icons for most item examines and mob examines
[33mcommit 1ce3d7cc567ef7b881c0f510d84c3a8879e17644[m
Author: RomanZC <[email protected]>
Date: Fri Mar 20 15:09:09 2020 +0000
More window fixes
[33mcommit 93dbc15af1f547813343be9252ecfc32cb9d8a8c[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 19 22:00:09 2020 -0400
Antag spawn SHOULD scale with total player, preferring to be small as possible.
[33mcommit 2e0c0027989576f45c7a9c9a1a45cfeffa79eb51[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 19 21:50:37 2020 -0400
Makes announce work again
[33mcommit eeeea778d2dba88fbe50d27704c8fade3db2c8cd[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 19 21:41:14 2020 -0400
Raiders will no longer force end the round
[33mcommit 3fd444294da311e9cea1f6f4aa0286d48cc25723[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 19 20:36:51 2020 -0400
Fixes movie titles on round end
[33mcommit 0ee8203aecfc89b0e0bc7c63d9d03ee5da3e9dc5[m
Author: Muncher2112 <[email protected]>
Date: Thu Mar 19 20:30:39 2020 -0400
Window fixes
[33mcommit e5a2be2d23fa03664db74ba526fb457724ad8d64[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 23:09:46 2020 +0300
Update highly_visible_and_dangerous_weapons.dm
[33mcommit c810c5dfb6e95a0d53a1e8a5a24614fc43d4ceb8[m
Author: Toxici11i <[email protected]>
Date: Thu Mar 19 18:18:30 2020 +0000
NOOOOOOOOOOOOO PSIONICS IS TOO ANNOYING NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
[33mcommit 6fd2195cb7e364cdf17ebc2096b22ebdf8a30fb9[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:46:17 2020 +0300
Update pray.dm
[33mcommit 3ab5e5a9e89d6b1d5d8a3c9c6f679289285ad0f9[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:44:51 2020 +0300
Update client_procs.dm
[33mcommit 7f636a56f52cfa4cdf87f35f6e68e0d1eece839f[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:43:28 2020 +0300
Update pray.dm
[33mcommit 5d73cb73cf85d10cef86842af1024689270f24f6[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:38:11 2020 +0300
Update pray.dm
[33mcommit 8c18d569d429f724b92a533a97664503a953c31a[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:34:59 2020 +0300
Update pray.dm
[33mcommit 55ad8e9352ff48580f11c0e6f06d571aae8f1df3[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:24:02 2020 +0300
Update client_defines.dm
[33mcommit 3439a3ef1d51d235b0cfff2fe89da3fef2b7d2b2[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:23:15 2020 +0300
Update client_procs.dm
[33mcommit c1ba8b8720461f73c4cc40141192bbc9e2ca7a11[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:05:23 2020 +0300
Update client_procs.dm
[33mcommit 8fa6e46bb021ed4fbb97aaa558f08fe25d359699[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 20:00:48 2020 +0300
Update rocket.dm
[33mcommit 9d03122b72c1ec2021864aa0cf431e0d3e11cada[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 19:24:41 2020 +0300
Fixes it up
[33mcommit cb308a571fa1c0c9996fbbb630ef7f702bbd7907[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 19:13:17 2020 +0300
Ports a feature from bay which allows you to take pills out by clicking on the bottle.
[33mcommit 0a6a770df2cb62e6914c4ea38ee4ca33ade5e10e[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 18:48:54 2020 +0300
Locker sounds.
[33mcommit 6a8988798c038bca9b9f3a8d01070810effc2d52[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 18:47:48 2020 +0300
Let's see.
[33mcommit 820ff85102fff853ce1c76bb6b5bc17d2df63eab[m
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Mar 19 16:29:53 2020 +0300
Bump minimist from 1.2.0 to 1.2.5 in /tgui (#156)
Bumps [minimist](https://github.com/substack/minimist) from 1.2.0 to 1.2.5.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.0...1.2.5)
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[33mcommit c9bdcac5dafda7f33b127c4bdf18f92b8cad3933[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 14:51:14 2020 +0300
Update skin.dmf
[33mcommit 9cbc5fb6a2a023df9e7eac8b3266f79699ab772c[m
Merge: f5923b99 3041bd47
Author: SireTurret <[email protected]>
Date: Thu Mar 19 13:57:56 2020 +0300
Merge branch 'master' of https://github.com/butmun/InterHippie2
[33mcommit f5923b99295cbe4321d5c3efc7ac7643fd5da0b9[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 13:57:54 2020 +0300
Ghostfilter is added as a sprite only. There is no code for it yet.
[33mcommit 4dbf655245dfaf8854684c2eb5a5eb18ae35d2d4[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 13:50:13 2020 +0300
Update progessbar.dmi
[33mcommit 3041bd47ab083eead05c94f99f257a7702702d4c[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 13:29:24 2020 +0300
Update preferences.dm
[33mcommit 45a06aeb889abbfbde12a34f2ad28baa57e776ac[m
Merge: decf956a 3acc186a
Author: SireTurret <[email protected]>
Date: Thu Mar 19 13:21:30 2020 +0300
Merge branch 'master' of https://github.com/butmun/InterHippie2
[33mcommit 3acc186af3bc9498795342c092d33822226d5a56[m
Author: Muncher2112 <[email protected]>
Date: Wed Mar 18 22:20:04 2020 -0400
Remove debug
[33mcommit cce729f79d9cc14db879dede07605a5011a2e4cc[m
Author: Muncher2112 <[email protected]>
Date: Wed Mar 18 22:15:28 2020 -0400
Closes #119 Better sprites are pending.
[33mcommit b37f3e29b2ab5ee039e3776eeb8fa7eaf9f40af2[m
Author: SireTurret <[email protected]>
Date: Thu Mar 19 01:51:39 2020 +0300