forked from shiptest-ss13/Shiptest
-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97971d8
commit 3c3f5b6
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
/datum/modpack/QoL | ||
name = "Quality of Life" | ||
desc = "Добавляет хотфикс кнопок, новую прическу, возвращает мензорские очки. Добавлены баблы для эмоций. Уменьшаем размер разогревочному пакету." | ||
author = "RalseiDreemuurr, MrCat15352" | ||
desc = @{"Добавляет хотфикс кнопок, новую прическу, возвращает мензорские очки. | ||
Добавлены баблы для эмоций. | ||
Уменьшаем размер разогревочному пакету. | ||
Добавлена универсальная кнопка FixChat2."} | ||
author = "RalseiDreemuurr, MrCat15352, MysticalFaceLesS" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// FixChat2, ускоренная версия FixChat => code\modules\tgui_panel\external.dm | ||
// | ||
|
||
/client/verb/fix_tgui_panel_2() | ||
set name = "Fix chat 2" | ||
set category = "OOC" | ||
set waitfor = FALSE | ||
|
||
winset(src, "output", "on-show=&is-disabled=0&is-visible=1") | ||
winset(src, "browseroutput", "is-disabled=1;is-visible=0") | ||
|
||
sleep(1) | ||
if (!tgui_panel || !istype(tgui_panel)) | ||
tgui_panel = new(src) | ||
tgui_panel.initialize(force = TRUE) | ||
|
||
sleep(1) | ||
if (tgui_panel) | ||
tgui_panel.window.send_message("ping", force = TRUE) | ||
|
||
sleep(1) | ||
winset(src, "output", "is-disabled=1&is-visible=0") | ||
winset(src, "browseroutput", "is-disabled=0;is-visible=1") |