You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
10
10
11
11
### Changed
12
12
* Prevent clicking server start button until server is completely off, not just stopping.
13
+
* Upon successful creation of a node it will redirect to the allocation tab and display a clearer message to add allocations.
13
14
14
15
### Fixed
15
16
* Team Fortress named 'Insurgency' in panel in database seeder. ([#96](https://github.com/Pterodactyl/Panel/issues/96), PR by [@MeltedLux](https://github.com/MeltedLux))
Copy file name to clipboardExpand all lines: app/Http/Controllers/Admin/NodesController.php
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -77,9 +77,10 @@ public function postNew(Request $request)
77
77
$new = $node->create($request->except([
78
78
'_token'
79
79
]));
80
-
Alert::success('Successfully created new node. You should allocate some IP addresses to it now.')->flash();
80
+
Alert::success('Successfully created new node. <strong>Before you can add any servers you need to first assign some IP addresses and ports.</strong>')->flash();
0 commit comments