Skip to content

Commit b2c415f

Browse files
committed
New version 3.0.4.0
ENHANCEMENTS: - Squadron credits added - /squadron credits added - Lua: dcsbot.addSquadronPoints() / dcsbot.getSquadronPoints() / dcsbot.listSquadrons() added - Lua: dcsbot.getUserRoles() added to retrieve the roles of the user in mission. - Competitive: auto-join to matches added, win-types added. CHANGES: - MissionStats: changed to dynamic event names - MizEdit: can work better with variables now, performance improved syntax support for lists/searches - People can only be a member of ONE squadron at a time now! - CreditSystem: Squadrons will receive points on kills now for each squadron member. - Competitive: new event onMatchFinished to be used in other plugins BUGFIXES: - Competitive: match finish check was not activated
1 parent 44edd9e commit b2c415f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/data/impl/serverimpl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ async def loadMission(self, mission: Union[int, str], modify_mission: Optional[b
952952
shutil.copy2(orig_mission, new_filename)
953953
if new_filename != mission:
954954
await self.replaceMission(start_index, new_filename)
955-
return await self.loadMission(start_index, modify_mission=modify_mission)
955+
return await self.loadMission(start_index, modify_mission=modify_mission)
956956
elif modify_mission:
957957
# don't use the orig file, still make sure we have a writable mission
958958
new_filename = utils.create_writable_mission(mission)

0 commit comments

Comments
 (0)