Fix Create Object/Turf/Mob all having the same title (#32747)

This commit is contained in:
Tad Hardesty
2017-11-15 17:06:35 -08:00
committed by ShizCalev
parent d8ce7a0251
commit c08c48fa4e
3 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
var/mobjs = null
mobjs = jointext(typesof(/mob), ";")
create_mob_html = file2text('html/create_object.html')
create_mob_html = replacetext(create_mob_html, "Create Object", "Create Mob")
create_mob_html = replacetext(create_mob_html, "null /* object types */", "\"[mobjs]\"")
user << browse(create_panel_helper(create_mob_html), "window=create_mob;size=425x475")