Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
odorajbotoj committed Oct 16, 2024
2 parents 9bd9605 + 8a9cea7 commit 60baff6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.1] - 2024-10-16

### Fixed

+ Fixed simplayer chat subcommand

## [2.2.0] - 2024-10-16

### Added
Expand Down Expand Up @@ -55,6 +61,7 @@ We skipped `v2.1.0` and `v2.1.1`. They have some serious bugs.
+ Move CoralFans SimulatedPlayer System from [CoralFans](https://github.com/CoralFans-Dev/CoralFans) to here
+ Added Script Arg

[2.2.1]: https://github.com/CoralFans-Dev/CFSP/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/CoralFans-Dev/CFSP/compare/v2.1.2...v2.2.0
[2.1.2]: https://github.com/CoralFans-Dev/CFSP/compare/v2.0.0...v2.1.2
[2.0.0]: https://github.com/CoralFans-Dev/CFSP/compare/v1.0.0...v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions src/cfsp/commands/Sp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ void registerSpCommand(CommandPermissionLevel permission) {
player,
self["name"].get<ll::command::ParamKind::SoftEnum>(),
false,
self["message"].get<ll::command::ParamKind::String>(),
self["str"].get<ll::command::ParamKind::String>(),
self["interval"].has_value() ? self["interval"].get<ll::command::ParamKind::Int>() : 20,
self["times"].has_value() ? self["times"].get<ll::command::ParamKind::Int>() : 1
);
Expand All @@ -478,7 +478,7 @@ void registerSpCommand(CommandPermissionLevel permission) {
return coral_fans::cfsp::SimPlayerManager::getInstance().groupChat(
player,
self["name"].get<ll::command::ParamKind::SoftEnum>(),
self["message"].get<ll::command::ParamKind::String>(),
self["str"].get<ll::command::ParamKind::String>(),
self["interval"].has_value() ? self["interval"].get<ll::command::ParamKind::Int>() : 20,
self["times"].has_value() ? self["times"].get<ll::command::ParamKind::Int>() : 1
);
Expand Down
2 changes: 1 addition & 1 deletion tooth.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/CoralFans-Dev/CFSP",
"version": "2.2.0",
"version": "2.2.1",
"info": {
"name": "CFSP",
"description": "CoralFans SimulatedPlayer",
Expand Down

0 comments on commit 60baff6

Please sign in to comment.