13 lines
342 B
JavaScript
13 lines
342 B
JavaScript
import {MODULE_ID, URI_SETTING_NAME} from "./common.js"
|
|
|
|
export function initializeSettings() {
|
|
game.settings.register(MODULE_ID, URI_SETTING_NAME, {
|
|
name: "Archive Server URI",
|
|
hint: "Address of the character archive server.",
|
|
scope: "world",
|
|
config: true,
|
|
default: "https://chararchive.cyberpunkrush.com",
|
|
type: String,
|
|
});
|
|
}
|