Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 576a4d4

Browse files
Bumps version & Fixes adding/removing verbs
1 parent 800e69b commit 576a4d4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

code/__HELPERS/verbs.dm

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
for(var/thing in verbs_list)
4444
var/procpath/verb_to_add = thing
4545
output_list[++output_list.len] = list(verb_to_add.category, verb_to_add.name)
46-
output_list = url_encode(json_encode(output_list))
4746

4847
target.stat_panel.send_message("add_verb_list", output_list)
4948

@@ -91,6 +90,5 @@
9190
for(var/thing in verbs_list)
9291
var/procpath/verb_to_remove = thing
9392
output_list[++output_list.len] = list(verb_to_remove.category, verb_to_remove.name)
94-
output_list = url_encode(json_encode(output_list))
9593

9694
target.stat_panel.send_message("remove_verb_list", output_list)

code/__byond_version_compat.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
//If you update these values, update the message in the #error
1313
#define MAX_BYOND_MAJOR 516
14-
#define MAX_BYOND_MINOR 1658
14+
#define MAX_BYOND_MINOR 1659
1515
#if ((DM_VERSION > MAX_BYOND_MAJOR) || (DM_BUILD > MAX_BYOND_MINOR)) && !defined(SPACEMAN_DMM)
1616
#error Your version of BYOND is too new to compile this project.
17-
#error Download version 515.1647 at www.byond.com/download/build/515/515.1642_byond.exe
17+
#error Download version 515.1659 at www.byond.com/download/build/515/515.1659_byond.exe
1818
#endif
1919

2020
// 515 split call for external libraries into call_ext

0 commit comments

Comments
 (0)