Skip to content

Commit 9f6d735

Browse files
committed
exclude default special boxes
1 parent 7ed1d60 commit 9f6d735

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

Autoload/Things.gd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,8 @@ func find_subtype_by_name(thingType, findName):
223223
func is_custom_special_box(subtype):
224224
if not DATA_OBJECT.has(subtype) or DATA_OBJECT[subtype][GENRE] != "SPECIALBOX":
225225
return false
226+
if subtype in [86,87,88,89,90,91,92,93,170,171,172,173]:
227+
return false
226228
return true
227229

228230
var DATA_EXTRA = {

Autoload/Version.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
extends Node
22

3-
var major_minor = "0.60"
3+
var major_minor = "0.61"
44
var patch = "0000"
55
var full = ""
66
var unearth_map_format_version:float = 1.06

changelog.gd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
extends Node
1+
extends Node
22

33
const string = """
4+
<version> - <date>
5+
- All custom specials now have access to the CustomBox field
46
0.60.804 - 24/7/2025
57
- Attempt to auto-detect keeperfx.exe or keeper.exe in current folder and parent folder
68
- Added link to keeperfx.net/workshop in File menu

0 commit comments

Comments
 (0)