Skip to content

Commit 37e4239

Browse files
Fix DRO effects being unsupported due to artificial limitations
1 parent 577fd29 commit 37e4239

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

server/network/aoprotocol.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -443,8 +443,6 @@ def net_cmd_ms(self, args):
443443
video, # 16
444444
blankpost, # 17
445445
) = args
446-
if ding != 1:
447-
ding = 0
448446
elif self.validate_net_cmd(
449447
args,
450448
self.ArgType.STR,
@@ -892,9 +890,6 @@ def net_cmd_ms(self, args):
892890
if evidence < 0:
893891
self.client.send_ooc("Your evidence index is invalid!")
894892
return
895-
if ding not in (0, 1):
896-
self.client.send_ooc("Your realization flash is invalid!")
897-
return
898893
if color < 0 or color >= 12:
899894
self.client.send_ooc("Your color is invalid!")
900895
return
@@ -929,8 +924,6 @@ def net_cmd_ms(self, args):
929924
emote_mod = 5
930925
# New clients do it in a specific objection message area.
931926
button = 0
932-
# Turn off the ding.
933-
ding = 0
934927
max_char = 0
935928
try:
936929
max_char = int(self.server.config["max_chars_ic"])

0 commit comments

Comments
 (0)