1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-01-22 06:00:23 +01:00

Add setting to enable extra inbox messages

This commit is contained in:
Jordan Irwin 2025-01-17 20:18:36 -08:00
parent 04504f3ff8
commit 315aed3dc0
No known key found for this signature in database
GPG Key ID: E3E358C2F44C290A
2 changed files with 6 additions and 1 deletions

View File

@ -79,7 +79,9 @@ homedecor.register("inbox", {
if inv:room_for_item("main", stack) then if inv:room_for_item("main", stack) then
return -1 return -1
else else
core.chat_send_player(player:get_player_name(), S("This mailbox is full.")) if core.settings:get_bool("homedecor.verbose_messages", false) then
core.chat_send_player(player:get_player_name(), S("This mailbox is full."))
end
return 0 return 0
end end
end end

3
settingtypes.txt Normal file
View File

@ -0,0 +1,3 @@
# Enables extra messages to players for certain actions.
homedecor.verbose_messages (Verbose messages) bool false