Merge branch 'master' of https://github.com/VOREStation/VOREStation into tgui-input-conversions

This commit is contained in:
ItsSelis
2022-06-19 12:22:34 +02:00
8 changed files with 26 additions and 2 deletions
+2 -1
View File
@@ -74,7 +74,8 @@
contains = list(
/obj/fiftyspawner/geocarpet,
/obj/fiftyspawner/retrocarpet,
/obj/fiftyspawner/retrocarpet_red
/obj/fiftyspawner/retrocarpet_red,
/obj/fiftyspawner/happycarpet
)
/datum/supply_pack/materials/linoleum
@@ -32,6 +32,10 @@
name = "stack of red retro carpet"
type_to_spawn = /obj/item/stack/tile/carpet/retro_red
/obj/fiftyspawner/happycarpet
name = "stack of happy carpet"
type_to_spawn = /obj/item/stack/tile/carpet/happy
/obj/fiftyspawner/floor
name = "stack of floor tiles"
type_to_spawn = /obj/item/stack/tile/floor
@@ -131,6 +131,10 @@
icon_state = "tile-carpet-retro-red"
desc = "A piece of carpet with red-ical space patterns. It is the same size as a normal floor tile!"
/obj/item/stack/tile/carpet/happy
icon_state = "tile-carpet-happy"
desc = "A piece of carpet with happy patterns. It is the same size as a normal floor tile!"
// TODO - Add descriptions to these
/obj/item/stack/tile/carpet/bcarpet
icon_state = "tile-carpet"
+6
View File
@@ -338,6 +338,12 @@ var/list/flooring_types
build_type = /obj/item/stack/tile/carpet/retro_red
flags = TURF_REMOVE_CROWBAR | TURF_CAN_BURN
/decl/flooring/carpet/happy
name = "happy carpet"
icon_base = "happycarpet"
build_type = /obj/item/stack/tile/carpet/happy
flags = TURF_REMOVE_CROWBAR | TURF_CAN_BURN
/decl/flooring/tiling
name = "floor"
desc = "Scuffed from the passage of countless greyshirts."
+6 -1
View File
@@ -23,7 +23,7 @@
name = "deco carpet"
icon_state = "decocarpet"
initial_flooring = /decl/flooring/carpet/geo
/turf/simulated/floor/carpet/retro
name = "retro carpet"
icon_state = "retrocarpet"
@@ -75,6 +75,11 @@
icon_state = "retrocarpet_red"
initial_flooring = /decl/flooring/carpet/retro_red
/turf/simulated/floor/carpet/happy
name = "happy carpet"
icon_state = "happycarpet"
initial_flooring = /decl/flooring/carpet/happy
/turf/simulated/floor/bluegrid
name = "mainframe floor"
icon = 'icons/turf/flooring/circuit.dmi'
+4
View File
@@ -41,6 +41,7 @@
set_typing_indicator(TRUE)
var/message = tgui_input_text(usr, "Type your message:", "Say")
message = readd_quotes(message)
set_typing_indicator(FALSE)
if(message)
@@ -52,6 +53,7 @@
set_typing_indicator(TRUE)
var/message = tgui_input_text(usr, "Type your message:", "Emote", multiline = TRUE)
message = readd_quotes(message)
set_typing_indicator(FALSE)
if(message)
@@ -63,6 +65,7 @@
set hidden = 1
var/message = tgui_input_text(usr, "Type your message:", "Whisper")
message = readd_quotes(message)
if(message)
whisper(message)
@@ -72,6 +75,7 @@
set hidden = 1
var/message = tgui_input_text(usr, "Type your message:", "Subtle", multiline = TRUE)
message = readd_quotes(message)
if(message)
me_verb_subtle(message)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 59 KiB