yolkbot 0.1.4-alpha.9 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/browser/build/global.js +1 -1
- package/browser/build/module.js +1 -1
- package/dist/api.js +1 -1
- package/dist/bot/GamePlayer.js +1 -1
- package/dist/bot.js +1 -1
- package/dist/constants/changelog.js +1 -1
- package/dist/constants/codes.js +1 -1
- package/dist/constants/housePromo.js +1 -1
- package/dist/constants/items.js +1 -1
- package/dist/constants/language.js +1 -1
- package/dist/constants/maps.js +1 -1
- package/dist/constants/shellNews.js +1 -1
- package/dist/constants/shopItems.js +1 -1
- package/dist/constants/sounds.js +1 -1
- package/dist/matchmaker.js +1 -1
- package/dist/pathing/mapnode.js +1 -1
- package/dist/types/bot.d.ts +8 -1
- package/dist/types/comm/CommIn.d.ts +22 -0
- package/dist/types/comm/CommOut.d.ts +10 -0
- package/dist/types/comm/OutBuffer.d.ts +24 -0
- package/dist/types/comm/Pool.d.ts +20 -0
- package/dist/types/comm/index.d.ts +12 -3
- package/dist/types/constants/challenges.d.ts +1 -1
- package/dist/types/constants/codes.d.ts +43 -43
- package/dist/types/constants/items.d.ts +1 -1
- package/dist/types/constants/maps.d.ts +1 -1
- package/dist/types/matchmaker.d.ts +2 -0
- package/dist/types/util.d.ts +2 -0
- package/dist/util.js +3 -0
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -23,14 +23,16 @@
|
|
|
23
23
|
<h3 align='center'>credits</h3>
|
|
24
24
|
|
|
25
25
|
<p align='center'>
|
|
26
|
-
this codebase
|
|
27
|
-
special thanks to
|
|
26
|
+
this codebase is written and maintained by <a href='https://github.com/villainsrule'>1ust</a><br>
|
|
27
|
+
special thanks to <a href='https://zastix.club'>zastix</a> for emotional support (you are amazing!)
|
|
28
28
|
</p>
|
|
29
29
|
|
|
30
|
+
<br>
|
|
31
|
+
|
|
30
32
|
<h3 align='center'>important: dmca</h3>
|
|
31
33
|
|
|
32
34
|
<p align='center'>
|
|
33
35
|
parts of this repository are JSON files that come from data contained in Shell Shockers. <br>
|
|
34
|
-
per <a href='https://www.copyright.gov/reports/studies/dmca/sec-104-report-vol-1.pdf'>section 117 of the DMCA</a>, this repository
|
|
36
|
+
per <a href='https://www.copyright.gov/reports/studies/dmca/sec-104-report-vol-1.pdf'>section 117 of the DMCA</a>, this repository is an archive and should not be subject to takedown. <br>
|
|
35
37
|
a false DMCA is considered illegal.
|
|
36
38
|
</p>
|